Struct google_androiddeviceprovisioning1::DeviceIdentifier[][src]

pub struct DeviceIdentifier {
    pub imei: Option<String>,
    pub model: Option<String>,
    pub serial_number: Option<String>,
    pub meid: Option<String>,
    pub manufacturer: Option<String>,
}

Encapsulates hardware and product IDs to identify a manufactured device. To understand requirements on identifier sets, read Identifiers.

This type is not used in any activity, and only used as part of another schema.

Fields

The device’s IMEI number. Validated on input.

The device model's name. Matches the device's built-in value returned from android.os.Build.MODEL. Allowed values are listed in models.

The manufacturer's serial number for the device. This value might not be unique across different device models.

The device’s MEID number.

The device manufacturer’s name. Matches the device's built-in value returned from android.os.Build.MANUFACTURER. Allowed values are listed in manufacturers.

Trait Implementations

impl Default for DeviceIdentifier
[src]

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

impl Clone for DeviceIdentifier
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DeviceIdentifier
[src]

Formats the value using the given formatter. Read more

impl Part for DeviceIdentifier
[src]

Auto Trait Implementations