Class: Google::Apis::PolyV1::AssetImportMessage

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/poly_v1/classes.rb,
generated/google/apis/poly_v1/representations.rb,
generated/google/apis/poly_v1/representations.rb

Overview

A message generated by the asset import process.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AssetImportMessage

Returns a new instance of AssetImportMessage.



160
161
162
# File 'generated/google/apis/poly_v1/classes.rb', line 160

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

Instance Attribute Details

#codeString

The code associated with this message. Corresponds to the JSON property code

Returns:

  • (String)


143
144
145
# File 'generated/google/apis/poly_v1/classes.rb', line 143

def code
  @code
end

#file_pathString

An optional file path. Only present for those error codes that specify it. Corresponds to the JSON property filePath

Returns:

  • (String)


148
149
150
# File 'generated/google/apis/poly_v1/classes.rb', line 148

def file_path
  @file_path
end

#image_errorGoogle::Apis::PolyV1::ImageError

A message resulting from reading an image file. Corresponds to the JSON property imageError



153
154
155
# File 'generated/google/apis/poly_v1/classes.rb', line 153

def image_error
  @image_error
end

#obj_parse_errorGoogle::Apis::PolyV1::ObjParseError

Details of an error resulting from parsing an OBJ file Corresponds to the JSON property objParseError



158
159
160
# File 'generated/google/apis/poly_v1/classes.rb', line 158

def obj_parse_error
  @obj_parse_error
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



165
166
167
168
169
170
# File 'generated/google/apis/poly_v1/classes.rb', line 165

def update!(**args)
  @code = args[:code] if args.key?(:code)
  @file_path = args[:file_path] if args.key?(:file_path)
  @image_error = args[:image_error] if args.key?(:image_error)
  @obj_parse_error = args[:obj_parse_error] if args.key?(:obj_parse_error)
end