GoogleCloudChannelV1ImportCustomerRequest.fromJson constructor

GoogleCloudChannelV1ImportCustomerRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1ImportCustomerRequest.fromJson(core.Map json_)
    : this(
        authToken: json_.containsKey('authToken')
            ? json_['authToken'] as core.String
            : null,
        channelPartnerId: json_.containsKey('channelPartnerId')
            ? json_['channelPartnerId'] as core.String
            : null,
        cloudIdentityId: json_.containsKey('cloudIdentityId')
            ? json_['cloudIdentityId'] as core.String
            : null,
        customer: json_.containsKey('customer')
            ? json_['customer'] as core.String
            : null,
        domain: json_.containsKey('domain')
            ? json_['domain'] as core.String
            : null,
        overwriteIfExists: json_.containsKey('overwriteIfExists')
            ? json_['overwriteIfExists'] as core.bool
            : null,
      );