Class: Google::Apis::AdminDirectoryV1::Member
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdminDirectoryV1::Member
 
- 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 Member resource in Directory API.
Instance Attribute Summary collapse
- 
  
    
      #email  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Email of member (Read-only) Corresponds to the JSON property email.
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ETag of the resource. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Unique identifier of customer member (Read-only) Unique identifier of group ( Read-only) Unique identifier of member (Read-only) Corresponds to the JSON property id.
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Kind of resource this is. 
- 
  
    
      #role  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Role of member Corresponds to the JSON property role.
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Status of member (Immutable) Corresponds to the JSON property status.
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Type of member (Immutable) Corresponds to the JSON property type.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Member 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Member. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Member
Returns a new instance of Member
| 1566 1567 1568 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 1566 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#email ⇒ String
Email of member (Read-only)
Corresponds to the JSON property email
| 1533 1534 1535 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 1533 def email @email end | 
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
| 1538 1539 1540 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 1538 def etag @etag end | 
#id ⇒ String
Unique identifier of customer member (Read-only) Unique identifier of group (
Read-only) Unique identifier of member (Read-only)
Corresponds to the JSON property id
| 1544 1545 1546 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 1544 def id @id end | 
#kind ⇒ String
Kind of resource this is.
Corresponds to the JSON property kind
| 1549 1550 1551 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 1549 def kind @kind end | 
#role ⇒ String
Role of member
Corresponds to the JSON property role
| 1554 1555 1556 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 1554 def role @role end | 
#status ⇒ String
Status of member (Immutable)
Corresponds to the JSON property status
| 1559 1560 1561 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 1559 def status @status end | 
#type ⇒ String
Type of member (Immutable)
Corresponds to the JSON property type
| 1564 1565 1566 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 1564 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1571 1572 1573 1574 1575 1576 1577 1578 1579 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 1571 def update!(**args) @email = args[:email] if args.key?(:email) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @role = args[:role] if args.key?(:role) @status = args[:status] if args.key?(:status) @type = args[:type] if args.key?(:type) end |