ListBigQueryExportsResponse.fromJson constructor
ListBigQueryExportsResponse.fromJson(
- Map json_
Implementation
ListBigQueryExportsResponse.fromJson(core.Map json_)
: this(
bigQueryExports: json_.containsKey('bigQueryExports')
? (json_['bigQueryExports'] as core.List)
.map((value) =>
GoogleCloudSecuritycenterV1BigQueryExport.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);