Class: Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1TransactionDataAddress

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

Structured address format for billing and shipping addresses.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRecaptchaenterpriseV1TransactionDataAddress

Returns a new instance of GoogleCloudRecaptchaenterpriseV1TransactionDataAddress.



1479
1480
1481
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1479

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

Instance Attribute Details

#addressArray<String>

The first lines of the address. The first line generally contains the street name and number, and further lines may include information such as an apartment number. Corresponds to the JSON property address

Returns:

  • (Array<String>)


1452
1453
1454
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1452

def address
  @address
end

#administrative_areaString

The state, province, or otherwise administrative area of the address. Corresponds to the JSON property administrativeArea

Returns:

  • (String)


1457
1458
1459
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1457

def administrative_area
  @administrative_area
end

#localityString

The town/city of the address. Corresponds to the JSON property locality

Returns:

  • (String)


1462
1463
1464
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1462

def locality
  @locality
end

#postal_codeString

The postal or ZIP code of the address. Corresponds to the JSON property postalCode

Returns:

  • (String)


1467
1468
1469
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1467

def postal_code
  @postal_code
end

#recipientString

The recipient name, potentially including information such as "care of". Corresponds to the JSON property recipient

Returns:

  • (String)


1472
1473
1474
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1472

def recipient
  @recipient
end

#region_codeString

The CLDR country/region of the address. Corresponds to the JSON property regionCode

Returns:

  • (String)


1477
1478
1479
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1477

def region_code
  @region_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1484
1485
1486
1487
1488
1489
1490
1491
# File 'lib/google/apis/recaptchaenterprise_v1/classes.rb', line 1484

def update!(**args)
  @address = args[:address] if args.key?(:address)
  @administrative_area = args[:administrative_area] if args.key?(:administrative_area)
  @locality = args[:locality] if args.key?(:locality)
  @postal_code = args[:postal_code] if args.key?(:postal_code)
  @recipient = args[:recipient] if args.key?(:recipient)
  @region_code = args[:region_code] if args.key?(:region_code)
end