Class: Google::Shopping::Merchant::Accounts::V1beta::BusinessIdentity::IdentityAttribute

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/shopping/merchant/accounts/v1beta/businessidentity.rb

Overview

All information related to an identity attribute.

Defined Under Namespace

Modules: IdentityDeclaration

Instance Attribute Summary collapse

Instance Attribute Details

#identity_declaration::Google::Shopping::Merchant::Accounts::V1beta::BusinessIdentity::IdentityAttribute::IdentityDeclaration

Returns Required. The declaration of identity for this attribute.

Returns:



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'proto_docs/google/shopping/merchant/accounts/v1beta/businessidentity.rb', line 71

class IdentityAttribute
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # All possible settings regarding the declaration of an identity.
  module IdentityDeclaration
    # Default value indicating that no selection was made.
    IDENTITY_DECLARATION_UNSPECIFIED = 0

    # Indicates that the account identifies with the attribute.
    SELF_IDENTIFIES_AS = 1

    # Indicates that the account does not identify with the attribute.
    DOES_NOT_SELF_IDENTIFY_AS = 2
  end
end