GoogleCloudDialogflowCxV3ExportAgentRequest.fromJson constructor

GoogleCloudDialogflowCxV3ExportAgentRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3ExportAgentRequest.fromJson(core.Map json_)
    : this(
        agentUri: json_.containsKey('agentUri')
            ? json_['agentUri'] as core.String
            : null,
        dataFormat: json_.containsKey('dataFormat')
            ? json_['dataFormat'] as core.String
            : null,
        environment: json_.containsKey('environment')
            ? json_['environment'] as core.String
            : null,
        gitDestination: json_.containsKey('gitDestination')
            ? GoogleCloudDialogflowCxV3ExportAgentRequestGitDestination
                .fromJson(json_['gitDestination']
                    as core.Map<core.String, core.dynamic>)
            : null,
        includeBigqueryExportSettings:
            json_.containsKey('includeBigqueryExportSettings')
                ? json_['includeBigqueryExportSettings'] as core.bool
                : null,
      );