Class: Google::Apis::ProximitybeaconV1beta1::AttachmentInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/proximitybeacon_v1beta1/classes.rb,
generated/google/apis/proximitybeacon_v1beta1/representations.rb,
generated/google/apis/proximitybeacon_v1beta1/representations.rb

Overview

A subset of attachment information served via the beaconinfo.getforobserved method, used when your users encounter your beacons.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AttachmentInfo

Returns a new instance of AttachmentInfo



524
525
526
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 524

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dataString

An opaque data container for client-provided data. Corresponds to the JSON property data NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


515
516
517
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 515

def data
  @data
end

#namespaced_typeString

Specifies what kind of attachment this is. Tells a client how to interpret the data field. Format is namespace/type, for example scrupulous-wombat-12345/welcome-message Corresponds to the JSON property namespacedType

Returns:

  • (String)


522
523
524
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 522

def namespaced_type
  @namespaced_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



529
530
531
532
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 529

def update!(**args)
  @data = args[:data] if args.key?(:data)
  @namespaced_type = args[:namespaced_type] if args.key?(:namespaced_type)
end