GoogleCloudContentwarehouseV1ListLinkedSourcesResponse.fromJson constructor

GoogleCloudContentwarehouseV1ListLinkedSourcesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1ListLinkedSourcesResponse.fromJson(
    core.Map json_)
    : this(
        documentLinks: json_.containsKey('documentLinks')
            ? (json_['documentLinks'] as core.List)
                .map((value) =>
                    GoogleCloudContentwarehouseV1DocumentLink.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );