LocalinventoryCustomBatchRequestEntry.fromJson constructor
      
      LocalinventoryCustomBatchRequestEntry.fromJson(
    
    
- Map json_
Implementation
LocalinventoryCustomBatchRequestEntry.fromJson(core.Map json_)
  : this(
      batchId: json_['batchId'] as core.int?,
      localInventory:
          json_.containsKey('localInventory')
              ? LocalInventory.fromJson(
                json_['localInventory']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      merchantId: json_['merchantId'] as core.String?,
      method: json_['method'] as core.String?,
      productId: json_['productId'] as core.String?,
    );