@@ -25,14 +25,17 @@ class CredentialResponse
2525
2626 attr_accessor :label
2727
28+ attr_accessor :type
29+
2830 # Attribute mapping from ruby-style variable name to JSON key.
2931 def self . attribute_map
3032 {
3133 :'display_order' => :'display_order' ,
3234 :'field_name' => :'field_name' ,
3335 :'field_type' => :'field_type' ,
3436 :'guid' => :'guid' ,
35- :'label' => :'label'
37+ :'label' => :'label' ,
38+ :'type' => :'type'
3639 }
3740 end
3841
@@ -48,7 +51,8 @@ def self.openapi_types
4851 :'field_name' => :'String' ,
4952 :'field_type' => :'String' ,
5053 :'guid' => :'String' ,
51- :'label' => :'String'
54+ :'label' => :'String' ,
55+ :'type' => :'String'
5256 }
5357 end
5458
@@ -59,7 +63,8 @@ def self.openapi_nullable
5963 :'field_name' ,
6064 :'field_type' ,
6165 :'guid' ,
62- :'label'
66+ :'label' ,
67+ :'type'
6368 ] )
6469 end
6570
@@ -97,6 +102,10 @@ def initialize(attributes = {})
97102 if attributes . key? ( :'label' )
98103 self . label = attributes [ :'label' ]
99104 end
105+
106+ if attributes . key? ( :'type' )
107+ self . type = attributes [ :'type' ]
108+ end
100109 end
101110
102111 # Show invalid properties with the reasons. Usually used together with valid?
@@ -121,7 +130,8 @@ def ==(o)
121130 field_name == o . field_name &&
122131 field_type == o . field_type &&
123132 guid == o . guid &&
124- label == o . label
133+ label == o . label &&
134+ type == o . type
125135 end
126136
127137 # @see the `==` method
@@ -133,7 +143,7 @@ def eql?(o)
133143 # Calculates hash code according to all attributes.
134144 # @return [Integer] Hash code
135145 def hash
136- [ display_order , field_name , field_type , guid , label ] . hash
146+ [ display_order , field_name , field_type , guid , label , type ] . hash
137147 end
138148
139149 # Builds the object from hash
0 commit comments