GoogleCloudApigeeV1UpdateAppGroupAppKeyRequest.fromJson constructor

GoogleCloudApigeeV1UpdateAppGroupAppKeyRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1UpdateAppGroupAppKeyRequest.fromJson(core.Map json_)
  : this(
      action: json_['action'] as core.String?,
      apiProducts:
          (json_['apiProducts'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      appGroupAppKey:
          json_.containsKey('appGroupAppKey')
              ? GoogleCloudApigeeV1AppGroupAppKey.fromJson(
                json_['appGroupAppKey']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );