@@ -17,6 +17,9 @@ class Destination
1717 # Descriptive name for the resource.
1818 attr_accessor :name
1919
20+ # Owner of the resource.
21+ attr_accessor :owner
22+
2023 attr_accessor :input
2124
2225 # Date of creation in RFC 3339 format.
@@ -36,6 +39,7 @@ def self.attribute_map
3639 :destination_id => :destinationID ,
3740 :type => :type ,
3841 :name => :name ,
42+ :owner => :owner ,
3943 :input => :input ,
4044 :created_at => :createdAt ,
4145 :updated_at => :updatedAt ,
@@ -50,6 +54,7 @@ def self.types_mapping
5054 :destination_id => :"String" ,
5155 :type => :"DestinationType" ,
5256 :name => :"String" ,
57+ :owner => :"String" ,
5358 :input => :"DestinationInput" ,
5459 :created_at => :"String" ,
5560 :updated_at => :"String" ,
@@ -61,7 +66,9 @@ def self.types_mapping
6166 # List of attributes with nullable: true
6267 def self . openapi_nullable
6368 Set . new (
64- [ ]
69+ [
70+ :owner
71+ ]
6572 )
6673 end
6774
@@ -106,6 +113,10 @@ def initialize(attributes = {})
106113 self . name = nil
107114 end
108115
116+ if attributes . key? ( :owner )
117+ self . owner = attributes [ :owner ]
118+ end
119+
109120 if attributes . key? ( :input )
110121 self . input = attributes [ :input ]
111122 else
@@ -141,6 +152,7 @@ def ==(other)
141152 destination_id == other . destination_id &&
142153 type == other . type &&
143154 name == other . name &&
155+ owner == other . owner &&
144156 input == other . input &&
145157 created_at == other . created_at &&
146158 updated_at == other . updated_at &&
@@ -157,7 +169,7 @@ def eql?(other)
157169 # Calculates hash code according to all attributes.
158170 # @return [Integer] Hash code
159171 def hash
160- [ destination_id , type , name , input , created_at , updated_at , authentication_id , transformation_ids ] . hash
172+ [ destination_id , type , name , owner , input , created_at , updated_at , authentication_id , transformation_ids ] . hash
161173 end
162174
163175 # Builds the object from hash
0 commit comments