class Google::Apis::AdminDirectoryV1::UserAbout
JSON template for About (notes) of a user in Directory API.
Attributes
content_type[RW]
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` @return [String]
value[RW]
Actual value of notes. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/admin_directory_v1/classes.rb, line 2463 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/admin_directory_v1/classes.rb, line 2468 def update!(**args) @content_type = args[:content_type] if args.key?(:content_type) @value = args[:value] if args.key?(:value) end