class Google::Apis::ProximitybeaconV1beta1::ListBeaconsResponse
Response that contains list beacon results and pagination help.
Attributes
beacons[RW]
The beacons that matched the search criteria. Corresponds to the JSON property `beacons` @return [Array<Google::Apis::ProximitybeaconV1beta1::Beacon>]
next_page_token[RW]
An opaque pagination token that the client may provide in their next request to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
total_count[RW]
Estimate of the total number of beacons matched by the query. Higher values may be less accurate. Corresponds to the JSON property `totalCount` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/proximitybeacon_v1beta1/classes.rb, line 250 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 255 def update!(**args) @beacons = args[:beacons] if args.key?(:beacons) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_count = args[:total_count] if args.key?(:total_count) end