GoogleCloudApigeeV1ListAppsResponse.fromJson constructor

GoogleCloudApigeeV1ListAppsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1ListAppsResponse.fromJson(core.Map json_)
    : this(
        app: json_.containsKey('app')
            ? (json_['app'] as core.List)
                .map((value) => GoogleCloudApigeeV1App.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
        totalSize: json_.containsKey('totalSize')
            ? json_['totalSize'] as core.int
            : null,
      );