RegionalinventoryCustomBatchRequestEntry.fromJson constructor

RegionalinventoryCustomBatchRequestEntry.fromJson(
  1. Map json_
)

Implementation

RegionalinventoryCustomBatchRequestEntry.fromJson(core.Map json_)
    : this(
        batchId: json_.containsKey('batchId')
            ? json_['batchId'] as core.int
            : null,
        merchantId: json_.containsKey('merchantId')
            ? json_['merchantId'] as core.String
            : null,
        method: json_.containsKey('method')
            ? json_['method'] as core.String
            : null,
        productId: json_.containsKey('productId')
            ? json_['productId'] as core.String
            : null,
        regionalInventory: json_.containsKey('regionalInventory')
            ? RegionalInventory.fromJson(json_['regionalInventory']
                as core.Map<core.String, core.dynamic>)
            : null,
      );