Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAuditUserLinksRequest
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAuditUserLinksRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analyticsadmin_v1alpha/classes.rb,
generated/google/apis/analyticsadmin_v1alpha/representations.rb,
generated/google/apis/analyticsadmin_v1alpha/representations.rb
Overview
Request message for AuditUserLinks RPC.
Instance Attribute Summary collapse
-
#page_size ⇒ Fixnum
The maximum number of user links to return.
-
#page_token ⇒ String
A page token, received from a previous
AuditUserLinks
call.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaAuditUserLinksRequest
constructor
A new instance of GoogleAnalyticsAdminV1alphaAuditUserLinksRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaAuditUserLinksRequest
Returns a new instance of GoogleAnalyticsAdminV1alphaAuditUserLinksRequest.
232 233 234 |
# File 'generated/google/apis/analyticsadmin_v1alpha/classes.rb', line 232 def initialize(**args) update!(**args) end |
Instance Attribute Details
#page_size ⇒ Fixnum
The maximum number of user links to return. The service may return fewer than
this value. If unspecified, at most 1000 user links will be returned. The
maximum value is 5000; values above 5000 will be coerced to 5000.
Corresponds to the JSON property pageSize
223 224 225 |
# File 'generated/google/apis/analyticsadmin_v1alpha/classes.rb', line 223 def page_size @page_size end |
#page_token ⇒ String
A page token, received from a previous AuditUserLinks
call. Provide this to
retrieve the subsequent page. When paginating, all other parameters provided
to AuditUserLinks
must match the call that provided the page token.
Corresponds to the JSON property pageToken
230 231 232 |
# File 'generated/google/apis/analyticsadmin_v1alpha/classes.rb', line 230 def page_token @page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
237 238 239 240 |
# File 'generated/google/apis/analyticsadmin_v1alpha/classes.rb', line 237 def update!(**args) @page_size = args[:page_size] if args.key?(:page_size) @page_token = args[:page_token] if args.key?(:page_token) end |