@@ -38,6 +38,9 @@ class PaymentConnectorConfiguration
38
38
# A unique identifier for the object.
39
39
attr_accessor :id
40
40
41
+ #
42
+ attr_accessor :image_path
43
+
41
44
# The ID of the space this object belongs to.
42
45
attr_accessor :linked_space_id
43
46
@@ -71,6 +74,7 @@ def self.attribute_map
71
74
:'enabled_sales_channels' => :'enabledSalesChannels' ,
72
75
:'enabled_space_views' => :'enabledSpaceViews' ,
73
76
:'id' => :'id' ,
77
+ :'image_path' => :'imagePath' ,
74
78
:'linked_space_id' => :'linkedSpaceId' ,
75
79
:'name' => :'name' ,
76
80
:'payment_method_configuration' => :'paymentMethodConfiguration' ,
@@ -91,6 +95,7 @@ def self.swagger_types
91
95
:'enabled_sales_channels' => :'Array<SalesChannel>' ,
92
96
:'enabled_space_views' => :'Array<Integer>' ,
93
97
:'id' => :'Integer' ,
98
+ :'image_path' => :'String' ,
94
99
:'linked_space_id' => :'Integer' ,
95
100
:'name' => :'String' ,
96
101
:'payment_method_configuration' => :'PaymentMethodConfiguration' ,
@@ -140,6 +145,10 @@ def initialize(attributes = {})
140
145
self . id = attributes [ :'id' ]
141
146
end
142
147
148
+ if attributes . has_key? ( :'imagePath' )
149
+ self . image_path = attributes [ :'imagePath' ]
150
+ end
151
+
143
152
if attributes . has_key? ( :'linkedSpaceId' )
144
153
self . linked_space_id = attributes [ :'linkedSpaceId' ]
145
154
end
@@ -212,6 +221,7 @@ def ==(o)
212
221
enabled_sales_channels == o . enabled_sales_channels &&
213
222
enabled_space_views == o . enabled_space_views &&
214
223
id == o . id &&
224
+ image_path == o . image_path &&
215
225
linked_space_id == o . linked_space_id &&
216
226
name == o . name &&
217
227
payment_method_configuration == o . payment_method_configuration &&
@@ -231,7 +241,7 @@ def eql?(o)
231
241
# Calculates hash code according to all attributes.
232
242
# @return [Fixnum] Hash code
233
243
def hash
234
- [ applicable_for_transaction_processing , conditions , connector , enabled_sales_channels , enabled_space_views , id , linked_space_id , name , payment_method_configuration , planned_purge_date , priority , processor_configuration , state , version ] . hash
244
+ [ applicable_for_transaction_processing , conditions , connector , enabled_sales_channels , enabled_space_views , id , image_path , linked_space_id , name , payment_method_configuration , planned_purge_date , priority , processor_configuration , state , version ] . hash
235
245
end
236
246
237
247
# Builds the object from hash
0 commit comments