Class: Google::Apis::AdminDirectoryV1::UserPhone
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AdminDirectoryV1::UserPhone
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/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.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserPhone
Returns a new instance of UserPhone
      3749 3750 3751  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3749 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#custom_type ⇒ String
Custom Type.
Corresponds to the JSON property customType
      3728 3729 3730  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3728 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
      3733 3734 3735  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3733 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
      3742 3743 3744  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3742 def type @type end  | 
  
#value ⇒ String
Phone number.
Corresponds to the JSON property value
      3747 3748 3749  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3747 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3754 3755 3756 3757 3758 3759  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3754 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  |