FindDevicesByOwnerRequest.fromJson constructor

FindDevicesByOwnerRequest.fromJson(
  1. Map json_
)

Implementation

FindDevicesByOwnerRequest.fromJson(core.Map json_)
  : this(
      customerId:
          (json_['customerId'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      googleWorkspaceCustomerId:
          (json_['googleWorkspaceCustomerId'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      limit: json_['limit'] as core.String?,
      pageToken: json_['pageToken'] as core.String?,
      sectionType: json_['sectionType'] as core.String?,
    );