Struct google_androiddeviceprovisioning1::FindDevicesByDeviceIdentifierRequest[][src]

pub struct FindDevicesByDeviceIdentifierRequest {
    pub page_token: Option<String>,
    pub device_identifier: Option<DeviceIdentifier>,
    pub limit: Option<String>,
}

Request to find devices.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

A token specifying which result page to return.

Required. The device identifier to search for.

Required. The maximum number of devices to show in a page of results. Must be between 1 and 100 inclusive.

Trait Implementations

impl Default for FindDevicesByDeviceIdentifierRequest
[src]

Returns the "default value" for a type. Read more

impl Clone for FindDevicesByDeviceIdentifierRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for FindDevicesByDeviceIdentifierRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for FindDevicesByDeviceIdentifierRequest
[src]

Auto Trait Implementations