GoogleCloudApigeeV1AsyncQueryResultView.fromJson constructor
GoogleCloudApigeeV1AsyncQueryResultView.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1AsyncQueryResultView.fromJson(core.Map json_)
: this(
code: json_['code'] as core.int?,
error: json_['error'] as core.String?,
metadata: json_.containsKey('metadata')
? GoogleCloudApigeeV1QueryMetadata.fromJson(
json_['metadata'] as core.Map<core.String, core.dynamic>)
: null,
rows: json_.containsKey('rows') ? json_['rows'] as core.List : null,
state: json_['state'] as core.String?,
);