Class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1SearchRelatedAccountGroupMembershipsRequest

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

Overview

The request message to search related account group memberships.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecaptchaenterpriseV1SearchRelatedAccountGroupMembershipsRequest

Returns a new instance of GoogleCloudRecaptchaenterpriseV1SearchRelatedAccountGroupMembershipsRequest.



696
697
698
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 696

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

Instance Attribute Details

#hashed_account_idString

Optional. The unique stable hashed user identifier we should search connections to. The identifier should correspond to a hashed_account_id provided in a previous CreateAssessment or AnnotateAssessment call. Corresponds to the JSON property hashedAccountId NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


678
679
680
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 678

def 
  @hashed_account_id
end

#page_sizeFixnum

Optional. The maximum number of groups to return. The service may return fewer than this value. If unspecified, at most 50 groups will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. Corresponds to the JSON property pageSize

Returns:

  • (Fixnum)


685
686
687
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 685

def page_size
  @page_size
end

#page_tokenString

Optional. A page token, received from a previous SearchRelatedAccountGroupMemberships call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to SearchRelatedAccountGroupMemberships must match the call that provided the page token. Corresponds to the JSON property pageToken

Returns:

  • (String)


694
695
696
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 694

def page_token
  @page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



701
702
703
704
705
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 701

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