Class: Google::Apis::DriveV2::About::ImportFormat
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::About::ImportFormat
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/drive_v2/classes.rb,
generated/google/apis/drive_v2/representations.rb,
generated/google/apis/drive_v2/representations.rb
Instance Attribute Summary collapse
-
#source ⇒ String
The imported file's content type to convert from.
-
#targets ⇒ Array<String>
The possible content types to convert to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ImportFormat
constructor
A new instance of ImportFormat.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ImportFormat
Returns a new instance of ImportFormat.
306 307 308 |
# File 'generated/google/apis/drive_v2/classes.rb', line 306 def initialize(**args) update!(**args) end |
Instance Attribute Details
#source ⇒ String
The imported file's content type to convert from.
Corresponds to the JSON property source
299 300 301 |
# File 'generated/google/apis/drive_v2/classes.rb', line 299 def source @source end |
#targets ⇒ Array<String>
The possible content types to convert to.
Corresponds to the JSON property targets
304 305 306 |
# File 'generated/google/apis/drive_v2/classes.rb', line 304 def targets @targets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
311 312 313 314 |
# File 'generated/google/apis/drive_v2/classes.rb', line 311 def update!(**args) @source = args[:source] if args.key?(:source) @targets = args[:targets] if args.key?(:targets) end |