GoogleCloudContactcenterinsightsV1ListConversationsResponse.fromJson constructor

GoogleCloudContactcenterinsightsV1ListConversationsResponse.fromJson(
  1. Map json_
)

Implementation

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