GoogleCloudChannelV1ListTransferableOffersRequest.fromJson constructor

GoogleCloudChannelV1ListTransferableOffersRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1ListTransferableOffersRequest.fromJson(core.Map json_)
    : this(
        billingAccount: json_.containsKey('billingAccount')
            ? json_['billingAccount'] as core.String
            : null,
        cloudIdentityId: json_.containsKey('cloudIdentityId')
            ? json_['cloudIdentityId'] as core.String
            : null,
        customerName: json_.containsKey('customerName')
            ? json_['customerName'] as core.String
            : null,
        languageCode: json_.containsKey('languageCode')
            ? json_['languageCode'] as core.String
            : null,
        pageSize: json_.containsKey('pageSize')
            ? json_['pageSize'] as core.int
            : null,
        pageToken: json_.containsKey('pageToken')
            ? json_['pageToken'] as core.String
            : null,
        sku: json_.containsKey('sku') ? json_['sku'] as core.String : null,
      );