GoogleCloudChannelV1TransferEntitlementsToGoogleRequest.fromJson constructor
GoogleCloudChannelV1TransferEntitlementsToGoogleRequest.fromJson(
- Map json_
Implementation
GoogleCloudChannelV1TransferEntitlementsToGoogleRequest.fromJson(
core.Map json_)
: this(
entitlements: json_.containsKey('entitlements')
? (json_['entitlements'] as core.List)
.map((value) => GoogleCloudChannelV1Entitlement.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
requestId: json_.containsKey('requestId')
? json_['requestId'] as core.String
: null,
);