GoogleCloudApigeeV1OrganizationProjectMapping.fromJson constructor
GoogleCloudApigeeV1OrganizationProjectMapping.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1OrganizationProjectMapping.fromJson(core.Map json_)
: this(
location: json_.containsKey('location')
? json_['location'] as core.String
: null,
organization: json_.containsKey('organization')
? json_['organization'] as core.String
: null,
projectId: json_.containsKey('projectId')
? json_['projectId'] as core.String
: null,
projectIds: json_.containsKey('projectIds')
? (json_['projectIds'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);