Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAuditUserLinksRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/analyticsadmin_v1alpha/classes.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb

Overview

Request message for AuditUserLinks RPC.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaAuditUserLinksRequest

Returns a new instance of GoogleAnalyticsAdminV1alphaAuditUserLinksRequest.



1441
1442
1443
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1441

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#page_sizeFixnum

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

Returns:

  • (Fixnum)


1432
1433
1434
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1432

def page_size
  @page_size
end

#page_tokenString

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

Returns:

  • (String)


1439
1440
1441
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1439

def page_token
  @page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1446
1447
1448
1449
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1446

def update!(**args)
  @page_size = args[:page_size] if args.key?(:page_size)
  @page_token = args[:page_token] if args.key?(:page_token)
end