Class: Google::Apis::AdminDirectoryV1::UserPhone
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::UserPhone
- 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 a phone entry.
Instance Attribute Summary collapse
-
#custom_type ⇒ String
Custom Type.
-
#primary ⇒ Boolean
(also: #primary?)
If this is user's primary phone or not.
-
#type ⇒ String
Each entry can have a type which indicates standard types of that entry.
-
#value ⇒ String
Phone number.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserPhone
constructor
A new instance of UserPhone.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UserPhone
Returns a new instance of UserPhone.
4536 4537 4538 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4536 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_type ⇒ String
Custom Type.
Corresponds to the JSON property customType
4515 4516 4517 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4515 def custom_type @custom_type end |
#primary ⇒ Boolean Also known as: primary?
If this is user's primary phone or not.
Corresponds to the JSON property primary
4520 4521 4522 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4520 def primary @primary end |
#type ⇒ String
Each entry can have a type which indicates standard types of that entry. For
example phone could be of home_fax work mobile etc. In addition to the
standard type an entry can have a custom type and can give it any name. Such
types should have the CUSTOM value as type and also have a customType value.
Corresponds to the JSON property type
4529 4530 4531 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4529 def type @type end |
#value ⇒ String
Phone number.
Corresponds to the JSON property value
4534 4535 4536 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4534 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4541 4542 4543 4544 4545 4546 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 4541 def update!(**args) @custom_type = args[:custom_type] if args.key?(:custom_type) @primary = args[:primary] if args.key?(:primary) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end |