Class: Google::Apis::AdminDirectoryV1::UserAbout

Inherits:
Object
  • Object
show all
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 About (notes) of a user in Directory API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UserAbout

Returns a new instance of UserAbout



3343
3344
3345
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3343

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#content_typeString

About entry can have a type which indicates the content type. It can either be plain or html. By default, notes contents are assumed to contain plain text. Corresponds to the JSON property contentType

Returns:

  • (String)


3336
3337
3338
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3336

def content_type
  @content_type
end

#valueString

Actual value of notes. Corresponds to the JSON property value

Returns:

  • (String)


3341
3342
3343
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3341

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3348
3349
3350
3351
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 3348

def update!(**args)
  @content_type = args[:content_type] if args.key?(:content_type)
  @value = args[:value] if args.key?(:value)
end