Class: Etna::Clients::Metis::CopyFilesRequest
- Inherits:
-
Struct
- Object
- Struct
- Etna::Clients::Metis::CopyFilesRequest
- Includes:
- JsonSerializableStruct
- Defined in:
- lib/etna/clients/metis/models.rb
Instance Attribute Summary collapse
-
#project_name ⇒ Object
Returns the value of attribute project_name.
-
#revisions ⇒ Object
Returns the value of attribute revisions.
Instance Method Summary collapse
- #add_revision(revision) ⇒ Object
-
#initialize(**args) ⇒ CopyFilesRequest
constructor
A new instance of CopyFilesRequest.
- #to_h ⇒ Object
Methods included from JsonSerializableStruct
Constructor Details
#initialize(**args) ⇒ CopyFilesRequest
Returns a new instance of CopyFilesRequest.
215 216 217 |
# File 'lib/etna/clients/metis/models.rb', line 215 def initialize(**args) super({revisions: []}.update(args)) end |
Instance Attribute Details
#project_name ⇒ Object
Returns the value of attribute project_name
212 213 214 |
# File 'lib/etna/clients/metis/models.rb', line 212 def project_name @project_name end |
#revisions ⇒ Object
Returns the value of attribute revisions
212 213 214 |
# File 'lib/etna/clients/metis/models.rb', line 212 def revisions @revisions end |
Instance Method Details
#add_revision(revision) ⇒ Object
219 220 221 |
# File 'lib/etna/clients/metis/models.rb', line 219 def add_revision(revision) revisions << revision end |
#to_h ⇒ Object
223 224 225 226 227 |
# File 'lib/etna/clients/metis/models.rb', line 223 def to_h # The nested :revisions values don't get converted correctly with transform_values, so it's # easier to do from a JSON string JSON.parse(to_json, :symbolize_names => true) end |