Class: Google::Apis::AdminDirectoryV1::UserIm
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AdminDirectoryV1::UserIm
 
 
- 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 instant messenger of an user.
Instance Attribute Summary collapse
- 
  
    
      #custom_protocol  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Custom protocol.
 - 
  
    
      #custom_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Custom type.
 - 
  
    
      #im  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Instant messenger id.
 - 
  
    
      #primary  ⇒ Boolean 
    
    
      (also: #primary?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If this is user's primary im.
 - 
  
    
      #protocol  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Protocol used in the instant messenger.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Each entry can have a type which indicates standard types of that entry.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UserIm 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of UserIm.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserIm
Returns a new instance of UserIm
      3441 3442 3443  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3441 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#custom_protocol ⇒ String
Custom protocol.
Corresponds to the JSON property customProtocol
      3408 3409 3410  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3408 def custom_protocol @custom_protocol end  | 
  
#custom_type ⇒ String
Custom type.
Corresponds to the JSON property customType
      3413 3414 3415  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3413 def custom_type @custom_type end  | 
  
#im ⇒ String
Instant messenger id.
Corresponds to the JSON property im
      3418 3419 3420  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3418 def im @im end  | 
  
#primary ⇒ Boolean Also known as: primary?
If this is user's primary im. Only one entry could be marked as primary.
Corresponds to the JSON property primary
      3423 3424 3425  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3423 def primary @primary end  | 
  
#protocol ⇒ String
Protocol used in the instant messenger. It should be one of the values from
ImProtocolTypes map. Similar to type, it can take a CUSTOM value and specify
the custom name in customProtocol field.
Corresponds to the JSON property protocol
      3431 3432 3433  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3431 def protocol @protocol end  | 
  
#type ⇒ String
Each entry can have a type which indicates standard types of that entry. For
example instant messengers 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
types should have the CUSTOM value as type and also have a customType value.
Corresponds to the JSON property type
      3439 3440 3441  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3439 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3446 3447 3448 3449 3450 3451 3452 3453  | 
    
      # File 'generated/google/apis/admin_directory_v1/classes.rb', line 3446 def update!(**args) @custom_protocol = args[:custom_protocol] if args.key?(:custom_protocol) @custom_type = args[:custom_type] if args.key?(:custom_type) @im = args[:im] if args.key?(:im) @primary = args[:primary] if args.key?(:primary) @protocol = args[:protocol] if args.key?(:protocol) @type = args[:type] if args.key?(:type) end  |