GoogleCloudChannelV1ChannelPartnerLink.fromJson constructor

GoogleCloudChannelV1ChannelPartnerLink.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1ChannelPartnerLink.fromJson(core.Map json_)
  : this(
      channelPartnerCloudIdentityInfo:
          json_.containsKey('channelPartnerCloudIdentityInfo')
          ? GoogleCloudChannelV1CloudIdentityInfo.fromJson(
              json_['channelPartnerCloudIdentityInfo']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      createTime: json_['createTime'] as core.String?,
      inviteLinkUri: json_['inviteLinkUri'] as core.String?,
      linkState: json_['linkState'] as core.String?,
      name: json_['name'] as core.String?,
      publicId: json_['publicId'] as core.String?,
      resellerCloudIdentityId:
          json_['resellerCloudIdentityId'] as core.String?,
      updateTime: json_['updateTime'] as core.String?,
    );