ListDataPointChangesResponse.fromJson constructor

ListDataPointChangesResponse.fromJson(
  1. Map json_
)

Implementation

ListDataPointChangesResponse.fromJson(core.Map json_)
  : this(
      dataSourceId: json_['dataSourceId'] as core.String?,
      deletedDataPoint:
          (json_['deletedDataPoint'] as core.List?)
              ?.map(
                (value) => DataPoint.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      insertedDataPoint:
          (json_['insertedDataPoint'] as core.List?)
              ?.map(
                (value) => DataPoint.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
    );