GoogleCloudApigeeV1TraceConfig.fromJson constructor

GoogleCloudApigeeV1TraceConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1TraceConfig.fromJson(core.Map json_)
    : this(
        endpoint: json_.containsKey('endpoint')
            ? json_['endpoint'] as core.String
            : null,
        exporter: json_.containsKey('exporter')
            ? json_['exporter'] as core.String
            : null,
        samplingConfig: json_.containsKey('samplingConfig')
            ? GoogleCloudApigeeV1TraceSamplingConfig.fromJson(
                json_['samplingConfig']
                    as core.Map<core.String, core.dynamic>)
            : null,
      );