FetchStorageInventoryResponse.fromJson constructor

FetchStorageInventoryResponse.fromJson(
  1. Map json_
)

Implementation

FetchStorageInventoryResponse.fromJson(core.Map json_)
  : this(
      nextPageToken: json_['nextPageToken'] as core.String?,
      resources:
          (json_['resources'] as core.List?)
              ?.map(
                (value) => SourceStorageResource.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      updateTime: json_['updateTime'] as core.String?,
    );