class Google::Apis::GamesConfigurationV1configuration::ImageConfiguration
An image configuration resource.
Attributes
image_type[RW]
The image type for the image. Corresponds to the JSON property `imageType` @return [String]
kind[RW]
Uniquely identifies the type of this resource. Value is always the fixed string `gamesConfiguration#imageConfiguration`. Corresponds to the JSON property `kind` @return [String]
resource_id[RW]
The resource ID of resource which the image belongs to. Corresponds to the JSON property `resourceId` @return [String]
url[RW]
The url for this image. Corresponds to the JSON property `url` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/games_configuration_v1configuration/classes.rb, line 280 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_configuration_v1configuration/classes.rb, line 285 def update!(**args) @image_type = args[:image_type] if args.key?(:image_type) @kind = args[:kind] if args.key?(:kind) @resource_id = args[:resource_id] if args.key?(:resource_id) @url = args[:url] if args.key?(:url) end