GoogleCloudApigeeV1OperationConfig.fromJson constructor
GoogleCloudApigeeV1OperationConfig.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1OperationConfig.fromJson(core.Map json_)
: this(
apiSource: json_['apiSource'] as core.String?,
attributes: (json_['attributes'] as core.List?)
?.map((value) => GoogleCloudApigeeV1Attribute.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
operations: (json_['operations'] as core.List?)
?.map((value) => GoogleCloudApigeeV1Operation.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
quota: json_.containsKey('quota')
? GoogleCloudApigeeV1Quota.fromJson(
json_['quota'] as core.Map<core.String, core.dynamic>)
: null,
);