class Google::Apis::GamesV1::ApplicationCategory

An application category object.

Attributes

kind[RW]

Uniquely identifies the type of this resource. Value is always the fixed string `games#applicationCategory`. Corresponds to the JSON property `kind` @return [String]

primary[RW]

The primary category. Corresponds to the JSON property `primary` @return [String]

secondary[RW]

The secondary category. Corresponds to the JSON property `secondary` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/games_v1/classes.rb, line 543
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @primary = args[:primary] if args.key?(:primary)
  @secondary = args[:secondary] if args.key?(:secondary)
end