GoogleCloudApigeeV1ApiDocDocumentationResponse.fromJson constructor
GoogleCloudApigeeV1ApiDocDocumentationResponse.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1ApiDocDocumentationResponse.fromJson(core.Map json_)
: this(
data: json_.containsKey('data')
? GoogleCloudApigeeV1ApiDocDocumentation.fromJson(
json_['data'] as core.Map<core.String, core.dynamic>)
: null,
errorCode: json_['errorCode'] as core.String?,
message: json_['message'] as core.String?,
requestId: json_['requestId'] as core.String?,
status: json_['status'] as core.String?,
);