Struct google_proximitybeacon1_beta1::BeaconAttachment[][src]

pub struct BeaconAttachment {
    pub max_distance_meters: Option<f64>,
    pub data: Option<String>,
    pub creation_time_ms: Option<String>,
    pub attachment_name: 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

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.

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.

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

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

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 Default for BeaconAttachment
[src]

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

impl Clone for BeaconAttachment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BeaconAttachment
[src]

Formats the value using the given formatter. Read more

impl RequestValue for BeaconAttachment
[src]

impl ResponseResult for BeaconAttachment
[src]

Auto Trait Implementations