ListServiceLevelObjectivesResponse.fromJson constructor

ListServiceLevelObjectivesResponse.fromJson(
  1. Map json_
)

Implementation

ListServiceLevelObjectivesResponse.fromJson(core.Map json_)
    : this(
        nextPageToken: json_['nextPageToken'] as core.String?,
        serviceLevelObjectives:
            (json_['serviceLevelObjectives'] as core.List?)
                ?.map((value) => ServiceLevelObjective.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList(),
      );