GoogleCloudChannelV1ChannelPartnerRepricingConfig.fromJson constructor
GoogleCloudChannelV1ChannelPartnerRepricingConfig.fromJson(
- Map json_
Implementation
GoogleCloudChannelV1ChannelPartnerRepricingConfig.fromJson(core.Map json_)
: this(
name: json_['name'] as core.String?,
repricingConfig: json_.containsKey('repricingConfig')
? GoogleCloudChannelV1RepricingConfig.fromJson(
json_['repricingConfig']
as core.Map<core.String, core.dynamic>)
: null,
updateTime: json_['updateTime'] as core.String?,
);