Class: Google::Apis::MybusinessplaceactionsV1::ListPlaceActionLinksResponse
- Inherits:
-
Object
- Object
- Google::Apis::MybusinessplaceactionsV1::ListPlaceActionLinksResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/mybusinessplaceactions_v1/classes.rb,
lib/google/apis/mybusinessplaceactions_v1/representations.rb,
lib/google/apis/mybusinessplaceactions_v1/representations.rb more...
Overview
Response message for PlaceActions.ListPlaceActionLinks.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
If there are more place action links than the requested page size, then this field is populated with a token to fetch the next page of results.
-
#place_action_links ⇒ Array<Google::Apis::MybusinessplaceactionsV1::PlaceActionLink>
The returned list of place action links.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListPlaceActionLinksResponse
constructor
A new instance of ListPlaceActionLinksResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListPlaceActionLinksResponse
Returns a new instance of ListPlaceActionLinksResponse.
57 58 59 |
# File 'lib/google/apis/mybusinessplaceactions_v1/classes.rb', line 57 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
If there are more place action links than the requested page size, then this
field is populated with a token to fetch the next page of results.
Corresponds to the JSON property nextPageToken
50 51 52 |
# File 'lib/google/apis/mybusinessplaceactions_v1/classes.rb', line 50 def next_page_token @next_page_token end |
#place_action_links ⇒ Array<Google::Apis::MybusinessplaceactionsV1::PlaceActionLink>
The returned list of place action links.
Corresponds to the JSON property placeActionLinks
55 56 57 |
# File 'lib/google/apis/mybusinessplaceactions_v1/classes.rb', line 55 def place_action_links @place_action_links end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
62 63 64 65 |
# File 'lib/google/apis/mybusinessplaceactions_v1/classes.rb', line 62 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @place_action_links = args[:place_action_links] if args.key?(:place_action_links) end |