class Google::Apis::AdminDirectoryV1::UserKeyword

JSON template for a keyword entry.

Attributes

custom_type[RW]

Custom Type. Corresponds to the JSON property `customType` @return [String]

type[RW]

Each entry can have a type which indicates standard type of that entry. For example keyword could be of type occupation or outlook. 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` @return [String]

value[RW]

Keyword. Corresponds to the JSON property `value` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/admin_directory_v1/classes.rb, line 4266
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/admin_directory_v1/classes.rb, line 4271
def update!(**args)
  @custom_type = args[:custom_type] if args.key?(:custom_type)
  @type = args[:type] if args.key?(:type)
  @value = args[:value] if args.key?(:value)
end