@@ -17,6 +17,8 @@ module MxPlatformRuby
1717 class ImageOptionResponse
1818 attr_accessor :data_uri
1919
20+ attr_accessor :guid
21+
2022 attr_accessor :label
2123
2224 attr_accessor :value
@@ -25,6 +27,7 @@ class ImageOptionResponse
2527 def self . attribute_map
2628 {
2729 :'data_uri' => :'data_uri' ,
30+ :'guid' => :'guid' ,
2831 :'label' => :'label' ,
2932 :'value' => :'value'
3033 }
@@ -39,6 +42,7 @@ def self.acceptable_attributes
3942 def self . openapi_types
4043 {
4144 :'data_uri' => :'String' ,
45+ :'guid' => :'String' ,
4246 :'label' => :'String' ,
4347 :'value' => :'String'
4448 }
@@ -48,6 +52,7 @@ def self.openapi_types
4852 def self . openapi_nullable
4953 Set . new ( [
5054 :'data_uri' ,
55+ :'guid' ,
5156 :'label' ,
5257 :'value'
5358 ] )
@@ -72,6 +77,10 @@ def initialize(attributes = {})
7277 self . data_uri = attributes [ :'data_uri' ]
7378 end
7479
80+ if attributes . key? ( :'guid' )
81+ self . guid = attributes [ :'guid' ]
82+ end
83+
7584 if attributes . key? ( :'label' )
7685 self . label = attributes [ :'label' ]
7786 end
@@ -102,6 +111,7 @@ def ==(o)
102111 return true if self . equal? ( o )
103112 self . class == o . class &&
104113 data_uri == o . data_uri &&
114+ guid == o . guid &&
105115 label == o . label &&
106116 value == o . value
107117 end
@@ -115,7 +125,7 @@ def eql?(o)
115125 # Calculates hash code according to all attributes.
116126 # @return [Integer] Hash code
117127 def hash
118- [ data_uri , label , value ] . hash
128+ [ data_uri , guid , label , value ] . hash
119129 end
120130
121131 # Builds the object from hash
0 commit comments