[][src]Struct google_proximitybeacon1_beta1::BeaconAttachment

pub struct BeaconAttachment {
    pub max_distance_meters: Option<f64>,
    pub attachment_name: Option<String>,
    pub creation_time_ms: Option<String>,
    pub data: Option<String>,
    pub namespaced_type: Option<String>,
}

Project-specific data associated with a beacon.

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

max_distance_meters: Option<f64>

The distance away from the beacon at which this attachment should be delivered to a mobile app.

Setting this to a value greater than zero indicates that the app should behave as if the beacon is "seen" when the mobile device is less than this distance away from the beacon.

Different attachments on the same beacon can have different max distances.

Note that even though this value is expressed with fractional meter precision, real-world behavior is likley to be much less precise than one meter, due to the nature of current Bluetooth radio technology.

Optional. When not set or zero, the attachment should be delivered at the beacon's outer limit of detection.

Negative values are invalid and return an error.

attachment_name: Option<String>

Resource name of this attachment. Attachment names have the format: beacons/beacon_id/attachments/attachment_id. Leave this empty on creation.

creation_time_ms: Option<String>

The UTC time when this attachment was created, in milliseconds since the UNIX epoch.

data: Option<String>

An opaque data container for client-provided data. Must be base64 encoded in HTTP requests, and will be so encoded (with padding) in responses. Required.

namespaced_type: Option<String>

Specifies what kind of attachment this is. Tells a client how to interpret the data field. Format is namespace/type. Namespace provides type separation between clients. Type describes the type of data, for use by the client when parsing the data field. Required.

Trait Implementations

impl ResponseResult for BeaconAttachment[src]

impl RequestValue for BeaconAttachment[src]

impl Default for BeaconAttachment[src]

impl Clone for BeaconAttachment[src]

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

Performs copy-assignment from source. Read more

impl Debug for BeaconAttachment[src]

impl Serialize for BeaconAttachment[src]

impl<'de> Deserialize<'de> for BeaconAttachment[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]