class Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListFirebaseLinksResponse
Response message for ListFirebaseLinks RPC
Attributes
firebase_links[RW]
List of FirebaseLinks. This will have at most one value. Corresponds to the JSON property `firebaseLinks` @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFirebaseLink>]
next_page_token[RW]
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. Currently, Google
Analytics supports only one FirebaseLink per property, so this will never be populated. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 1704 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 1709 def update!(**args) @firebase_links = args[:firebase_links] if args.key?(:firebase_links) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end