Class: Google::Apis::AdminDirectoryV1::UserAddress
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::UserAddress
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/admin_directory_v1/classes.rb,
lib/google/apis/admin_directory_v1/representations.rb,
lib/google/apis/admin_directory_v1/representations.rb
Overview
JSON template for address.
Instance Attribute Summary collapse
-
#country ⇒ String
Country.
-
#country_code ⇒ String
Country code.
-
#custom_type ⇒ String
Custom type.
-
#extended_address ⇒ String
Extended Address.
-
#formatted ⇒ String
Formatted address.
-
#locality ⇒ String
Locality.
-
#po_box ⇒ String
Other parts of address.
-
#postal_code ⇒ String
Postal code.
-
#primary ⇒ Boolean
(also: #primary?)
If this is user's primary address.
-
#region ⇒ String
Region.
-
#source_is_structured ⇒ Boolean
(also: #source_is_structured?)
User supplied address was structured.
-
#street_address ⇒ String
Street.
-
#type ⇒ String
Each entry can have a type which indicates standard values of that entry.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserAddress
constructor
A new instance of UserAddress.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UserAddress
Returns a new instance of UserAddress.
3656 3657 3658 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3656 def initialize(**args) update!(**args) end |
Instance Attribute Details
#country ⇒ String
Country.
Corresponds to the JSON property country
3587 3588 3589 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3587 def country @country end |
#country_code ⇒ String
Country code.
Corresponds to the JSON property countryCode
3592 3593 3594 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3592 def country_code @country_code end |
#custom_type ⇒ String
Custom type.
Corresponds to the JSON property customType
3597 3598 3599 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3597 def custom_type @custom_type end |
#extended_address ⇒ String
Extended Address.
Corresponds to the JSON property extendedAddress
3602 3603 3604 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3602 def extended_address @extended_address end |
#formatted ⇒ String
Formatted address.
Corresponds to the JSON property formatted
3607 3608 3609 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3607 def formatted @formatted end |
#locality ⇒ String
Locality.
Corresponds to the JSON property locality
3612 3613 3614 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3612 def locality @locality end |
#po_box ⇒ String
Other parts of address.
Corresponds to the JSON property poBox
3617 3618 3619 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3617 def po_box @po_box end |
#postal_code ⇒ String
Postal code.
Corresponds to the JSON property postalCode
3622 3623 3624 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3622 def postal_code @postal_code end |
#primary ⇒ Boolean Also known as: primary?
If this is user's primary address. Only one entry could be marked as primary.
Corresponds to the JSON property primary
3627 3628 3629 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3627 def primary @primary end |
#region ⇒ String
Region.
Corresponds to the JSON property region
3633 3634 3635 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3633 def region @region end |
#source_is_structured ⇒ Boolean Also known as: source_is_structured?
User supplied address was structured. Structured addresses are NOT supported
at this time. You might be able to write structured addresses but any values
will eventually be clobbered.
Corresponds to the JSON property sourceIsStructured
3640 3641 3642 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3640 def source_is_structured @source_is_structured end |
#street_address ⇒ String
Street.
Corresponds to the JSON property streetAddress
3646 3647 3648 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3646 def street_address @street_address end |
#type ⇒ String
Each entry can have a type which indicates standard values of that entry. For
example address could be of home work etc. In addition to the standard type an
entry can have a custom type and can take any value. Such type should have the
CUSTOM value as type and also have a customType value.
Corresponds to the JSON property type
3654 3655 3656 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3654 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 3661 def update!(**args) @country = args[:country] if args.key?(:country) @country_code = args[:country_code] if args.key?(:country_code) @custom_type = args[:custom_type] if args.key?(:custom_type) @extended_address = args[:extended_address] if args.key?(:extended_address) @formatted = args[:formatted] if args.key?(:formatted) @locality = args[:locality] if args.key?(:locality) @po_box = args[:po_box] if args.key?(:po_box) @postal_code = args[:postal_code] if args.key?(:postal_code) @primary = args[:primary] if args.key?(:primary) @region = args[:region] if args.key?(:region) @source_is_structured = args[:source_is_structured] if args.key?(:source_is_structured) @street_address = args[:street_address] if args.key?(:street_address) @type = args[:type] if args.key?(:type) end |