Struct google_proximitybeacon1_beta1::AdvertisedId[][src]

pub struct AdvertisedId {
    pub type_: Option<String>,
    pub id: Option<String>,
}

Defines a unique identifier of a beacon as broadcast by the device.

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

Fields

Specifies the identifier type. Required.

The actual beacon identifier, as broadcast by the beacon hardware. Must be base64 encoded in HTTP requests, and will be so encoded (with padding) in responses. The base64 encoding should be of the binary byte-stream and not any textual (such as hex) representation thereof. Required.

Trait Implementations

impl Default for AdvertisedId
[src]

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

impl Clone for AdvertisedId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AdvertisedId
[src]

Formats the value using the given formatter. Read more

impl Part for AdvertisedId
[src]

Auto Trait Implementations