GoogleCloudApigeeV1MetricAggregation.fromJson constructor

GoogleCloudApigeeV1MetricAggregation.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1MetricAggregation.fromJson(core.Map json_)
    : this(
        aggregation: json_.containsKey('aggregation')
            ? json_['aggregation'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        order:
            json_.containsKey('order') ? json_['order'] as core.String : null,
      );