class Google::Apis::ProximitybeaconV1beta1::GetInfoForObservedBeaconsRequest

Request for beacon and attachment information about beacons that a mobile client has encountered “in the wild”.

Attributes

namespaced_types[RW]

Specifies what kind of attachments to include in the response. When given, the response will include only attachments of the given types. When empty, no attachments will be returned. Must be in the format namespace/type. Accepts `*` to specify all types in all namespaces. Optional. Corresponds to the JSON property `namespacedTypes` @return [Array<String>]

observations[RW]

The beacons that the client has encountered. At least one must be given. Corresponds to the JSON property `observations` @return [Array<Google::Apis::ProximitybeaconV1beta1::Observation>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/proximitybeacon_v1beta1/classes.rb, line 505
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/proximitybeacon_v1beta1/classes.rb, line 510
def update!(**args)
  @observations = args[:observations] if args.key?(:observations)
  @namespaced_types = args[:namespaced_types] if args.key?(:namespaced_types)
end