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