Class: Merge::Ticketing::Collection
- Inherits:
-
Object
- Object
- Merge::Ticketing::Collection
- Defined in:
- lib/merge_ruby_client/ticketing/types/collection.rb
Overview
# The Collection Object
### Description
The `Collection` object is used to represent collections of tickets. Collections
may include other collections as
sub collections.
### Usage Example
TODO
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#access_level ⇒ Merge::Ticketing::AccessLevelEnum
readonly
The level of access a User has to the Collection and its sub-objects.
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#collection_type ⇒ Merge::Ticketing::CollectionTypeEnum
readonly
The collection’s type.
-
#created_at ⇒ DateTime
readonly
The datetime that this object was created by Merge.
-
#description ⇒ String
readonly
The collection’s description.
- #field_mappings ⇒ Hash{String => Object} readonly
- #id ⇒ String readonly
-
#modified_at ⇒ DateTime
readonly
The datetime that this object was modified by Merge.
-
#name ⇒ String
readonly
The collection’s name.
-
#parent_collection ⇒ Merge::Ticketing::CollectionParentCollection
readonly
The parent collection for this collection.
- #remote_data ⇒ Array<Merge::Ticketing::RemoteData> readonly
-
#remote_id ⇒ String
readonly
The third-party API ID of the matching object.
-
#remote_was_deleted ⇒ Boolean
readonly
Indicates whether or not this object has been deleted in the third party platform.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Merge::Ticketing::Collection
Deserialize a JSON object to an instance of Collection.
-
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.
Instance Method Summary collapse
- #initialize(id: OMIT, remote_id: OMIT, created_at: OMIT, modified_at: OMIT, name: OMIT, description: OMIT, collection_type: OMIT, parent_collection: OMIT, remote_was_deleted: OMIT, access_level: OMIT, field_mappings: OMIT, remote_data: OMIT, additional_properties: nil) ⇒ Merge::Ticketing::Collection constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of Collection to a JSON object.
Constructor Details
#initialize(id: OMIT, remote_id: OMIT, created_at: OMIT, modified_at: OMIT, name: OMIT, description: OMIT, collection_type: OMIT, parent_collection: OMIT, remote_was_deleted: OMIT, access_level: OMIT, field_mappings: OMIT, remote_data: OMIT, additional_properties: nil) ⇒ Merge::Ticketing::Collection
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 79 def initialize(id: OMIT, remote_id: OMIT, created_at: OMIT, modified_at: OMIT, name: OMIT, description: OMIT, collection_type: OMIT, parent_collection: OMIT, remote_was_deleted: OMIT, access_level: OMIT, field_mappings: OMIT, remote_data: OMIT, additional_properties: nil) @id = id if id != OMIT @remote_id = remote_id if remote_id != OMIT @created_at = created_at if created_at != OMIT @modified_at = modified_at if modified_at != OMIT @name = name if name != OMIT @description = description if description != OMIT @collection_type = collection_type if collection_type != OMIT @parent_collection = parent_collection if parent_collection != OMIT @remote_was_deleted = remote_was_deleted if remote_was_deleted != OMIT @access_level = access_level if access_level != OMIT @field_mappings = field_mappings if field_mappings != OMIT @remote_data = remote_data if remote_data != OMIT @additional_properties = additional_properties @_field_set = { "id": id, "remote_id": remote_id, "created_at": created_at, "modified_at": modified_at, "name": name, "description": description, "collection_type": collection_type, "parent_collection": parent_collection, "remote_was_deleted": remote_was_deleted, "access_level": access_level, "field_mappings": field_mappings, "remote_data": remote_data }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#access_level ⇒ Merge::Ticketing::AccessLevelEnum (readonly)
Returns The level of access a User has to the Collection and its sub-objects.
-
‘PRIVATE` - PRIVATE
-
‘COMPANY` - COMPANY
-
‘PUBLIC` - PUBLIC.
46 47 48 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 46 def access_level @access_level end |
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
52 53 54 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 52 def additional_properties @additional_properties end |
#collection_type ⇒ Merge::Ticketing::CollectionTypeEnum (readonly)
Returns The collection’s type.
-
‘LIST` - LIST
-
‘PROJECT` - PROJECT.
36 37 38 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 36 def collection_type @collection_type end |
#created_at ⇒ DateTime (readonly)
Returns The datetime that this object was created by Merge.
26 27 28 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 26 def created_at @created_at end |
#description ⇒ String (readonly)
Returns The collection’s description.
32 33 34 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 32 def description @description end |
#field_mappings ⇒ Hash{String => Object} (readonly)
48 49 50 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 48 def field_mappings @field_mappings end |
#id ⇒ String (readonly)
22 23 24 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 22 def id @id end |
#modified_at ⇒ DateTime (readonly)
Returns The datetime that this object was modified by Merge.
28 29 30 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 28 def modified_at @modified_at end |
#name ⇒ String (readonly)
Returns The collection’s name.
30 31 32 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 30 def name @name end |
#parent_collection ⇒ Merge::Ticketing::CollectionParentCollection (readonly)
Returns The parent collection for this collection.
38 39 40 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 38 def parent_collection @parent_collection end |
#remote_data ⇒ Array<Merge::Ticketing::RemoteData> (readonly)
50 51 52 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 50 def remote_data @remote_data end |
#remote_id ⇒ String (readonly)
Returns The third-party API ID of the matching object.
24 25 26 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 24 def remote_id @remote_id end |
#remote_was_deleted ⇒ Boolean (readonly)
Returns Indicates whether or not this object has been deleted in the third party platform.
41 42 43 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 41 def remote_was_deleted @remote_was_deleted end |
Class Method Details
.from_json(json_object:) ⇒ Merge::Ticketing::Collection
Deserialize a JSON object to an instance of Collection
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 116 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) id = parsed_json["id"] remote_id = parsed_json["remote_id"] created_at = (DateTime.parse(parsed_json["created_at"]) unless parsed_json["created_at"].nil?) modified_at = (DateTime.parse(parsed_json["modified_at"]) unless parsed_json["modified_at"].nil?) name = parsed_json["name"] description = parsed_json["description"] collection_type = parsed_json["collection_type"] if parsed_json["parent_collection"].nil? parent_collection = nil else parent_collection = parsed_json["parent_collection"].to_json parent_collection = Merge::Ticketing::CollectionParentCollection.from_json(json_object: parent_collection) end remote_was_deleted = parsed_json["remote_was_deleted"] access_level = parsed_json["access_level"] field_mappings = parsed_json["field_mappings"] remote_data = parsed_json["remote_data"]&.map do |item| item = item.to_json Merge::Ticketing::RemoteData.from_json(json_object: item) end new( id: id, remote_id: remote_id, created_at: created_at, modified_at: modified_at, name: name, description: description, collection_type: collection_type, parent_collection: parent_collection, remote_was_deleted: remote_was_deleted, access_level: access_level, field_mappings: field_mappings, remote_data: remote_data, additional_properties: struct ) end |
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given
hash and check each fields type against the current object's property
definitions.
169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 169 def self.validate_raw(obj:) obj.id&.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.") obj.remote_id&.is_a?(String) != false || raise("Passed value for field obj.remote_id is not the expected type, validation failed.") obj.created_at&.is_a?(DateTime) != false || raise("Passed value for field obj.created_at is not the expected type, validation failed.") obj.modified_at&.is_a?(DateTime) != false || raise("Passed value for field obj.modified_at is not the expected type, validation failed.") obj.name&.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.") obj.description&.is_a?(String) != false || raise("Passed value for field obj.description is not the expected type, validation failed.") obj.collection_type&.is_a?(Merge::Ticketing::CollectionTypeEnum) != false || raise("Passed value for field obj.collection_type is not the expected type, validation failed.") obj.parent_collection.nil? || Merge::Ticketing::CollectionParentCollection.validate_raw(obj: obj.parent_collection) obj.remote_was_deleted&.is_a?(Boolean) != false || raise("Passed value for field obj.remote_was_deleted is not the expected type, validation failed.") obj.access_level&.is_a?(Merge::Ticketing::AccessLevelEnum) != false || raise("Passed value for field obj.access_level is not the expected type, validation failed.") obj.field_mappings&.is_a?(Hash) != false || raise("Passed value for field obj.field_mappings is not the expected type, validation failed.") obj.remote_data&.is_a?(Array) != false || raise("Passed value for field obj.remote_data is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of Collection to a JSON object
159 160 161 |
# File 'lib/merge_ruby_client/ticketing/types/collection.rb', line 159 def to_json(*_args) @_field_set&.to_json end |