[][src]Struct google_androiddeviceprovisioning1::UnclaimDeviceRequest

pub struct UnclaimDeviceRequest {
    pub vacation_mode_days: Option<i32>,
    pub device_identifier: Option<DeviceIdentifier>,
    pub vacation_mode_expire_time: Option<String>,
    pub device_id: Option<String>,
    pub section_type: Option<String>,
}

Request message to unclaim a device.

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

vacation_mode_days: Option<i32>

The duration of the vacation unlock starting from when the request is processed. (1 day is treated as 24 hours)

device_identifier: Option<DeviceIdentifier>

The device identifier you used when you claimed this device.

vacation_mode_expire_time: Option<String>

The expiration time of the vacation unlock.

device_id: Option<String>

The device ID returned by ClaimDevice.

section_type: Option<String>

Required. The section type of the device's provisioning record.

Trait Implementations

impl RequestValue for UnclaimDeviceRequest[src]

impl Default for UnclaimDeviceRequest[src]

impl Clone for UnclaimDeviceRequest[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for UnclaimDeviceRequest[src]

impl Serialize for UnclaimDeviceRequest[src]

impl<'de> Deserialize<'de> for UnclaimDeviceRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]