Class: Google::Apis::SlidesV1::Response

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

Overview

A single response from an update.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Response

Returns a new instance of Response



2249
2250
2251
# File 'generated/google/apis/slides_v1/classes.rb', line 2249

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

Instance Attribute Details

#create_imageGoogle::Apis::SlidesV1::CreateImageResponse

The result of creating an image. Corresponds to the JSON property createImage



2217
2218
2219
# File 'generated/google/apis/slides_v1/classes.rb', line 2217

def create_image
  @create_image
end

#create_lineGoogle::Apis::SlidesV1::CreateLineResponse

The result of creating a line. Corresponds to the JSON property createLine



2212
2213
2214
# File 'generated/google/apis/slides_v1/classes.rb', line 2212

def create_line
  @create_line
end

#create_shapeGoogle::Apis::SlidesV1::CreateShapeResponse

The result of creating a shape. Corresponds to the JSON property createShape



2207
2208
2209
# File 'generated/google/apis/slides_v1/classes.rb', line 2207

def create_shape
  @create_shape
end

#create_sheets_chartGoogle::Apis::SlidesV1::CreateSheetsChartResponse

The result of creating an embedded Google Sheets chart. Corresponds to the JSON property createSheetsChart



2227
2228
2229
# File 'generated/google/apis/slides_v1/classes.rb', line 2227

def create_sheets_chart
  @create_sheets_chart
end

#create_slideGoogle::Apis::SlidesV1::CreateSlideResponse

The result of creating a slide. Corresponds to the JSON property createSlide



2197
2198
2199
# File 'generated/google/apis/slides_v1/classes.rb', line 2197

def create_slide
  @create_slide
end

#create_tableGoogle::Apis::SlidesV1::CreateTableResponse

The result of creating a table. Corresponds to the JSON property createTable



2242
2243
2244
# File 'generated/google/apis/slides_v1/classes.rb', line 2242

def create_table
  @create_table
end

#create_videoGoogle::Apis::SlidesV1::CreateVideoResponse

The result of creating a video. Corresponds to the JSON property createVideo



2222
2223
2224
# File 'generated/google/apis/slides_v1/classes.rb', line 2222

def create_video
  @create_video
end

#duplicate_objectGoogle::Apis::SlidesV1::DuplicateObjectResponse

The response of duplicating an object. Corresponds to the JSON property duplicateObject



2202
2203
2204
# File 'generated/google/apis/slides_v1/classes.rb', line 2202

def duplicate_object
  @duplicate_object
end

#replace_all_shapes_with_imageGoogle::Apis::SlidesV1::ReplaceAllShapesWithImageResponse

The result of replacing shapes with an image. Corresponds to the JSON property replaceAllShapesWithImage



2237
2238
2239
# File 'generated/google/apis/slides_v1/classes.rb', line 2237

def replace_all_shapes_with_image
  @replace_all_shapes_with_image
end

#replace_all_shapes_with_sheets_chartGoogle::Apis::SlidesV1::ReplaceAllShapesWithSheetsChartResponse

The result of replacing shapes with a Google Sheets chart. Corresponds to the JSON property replaceAllShapesWithSheetsChart



2232
2233
2234
# File 'generated/google/apis/slides_v1/classes.rb', line 2232

def replace_all_shapes_with_sheets_chart
  @replace_all_shapes_with_sheets_chart
end

#replace_all_textGoogle::Apis::SlidesV1::ReplaceAllTextResponse

The result of replacing text. Corresponds to the JSON property replaceAllText



2247
2248
2249
# File 'generated/google/apis/slides_v1/classes.rb', line 2247

def replace_all_text
  @replace_all_text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
# File 'generated/google/apis/slides_v1/classes.rb', line 2254

def update!(**args)
  @create_slide = args[:create_slide] if args.key?(:create_slide)
  @duplicate_object = args[:duplicate_object] if args.key?(:duplicate_object)
  @create_shape = args[:create_shape] if args.key?(:create_shape)
  @create_line = args[:create_line] if args.key?(:create_line)
  @create_image = args[:create_image] if args.key?(:create_image)
  @create_video = args[:create_video] if args.key?(:create_video)
  @create_sheets_chart = args[:create_sheets_chart] if args.key?(:create_sheets_chart)
  @replace_all_shapes_with_sheets_chart = args[:replace_all_shapes_with_sheets_chart] if args.key?(:replace_all_shapes_with_sheets_chart)
  @replace_all_shapes_with_image = args[:replace_all_shapes_with_image] if args.key?(:replace_all_shapes_with_image)
  @create_table = args[:create_table] if args.key?(:create_table)
  @replace_all_text = args[:replace_all_text] if args.key?(:replace_all_text)
end