@@ -14,16 +14,13 @@ class AuthenticationUpdate
1414      # Descriptive name for the resource. 
1515      attr_accessor  :name 
1616
17-       attr_accessor  :platform 
18- 
1917      attr_accessor  :input 
2018
2119      # Attribute mapping from ruby-style variable name to JSON key. 
2220      def  self . attribute_map 
2321        { 
2422          :type  =>  :type , 
2523          :name  =>  :name , 
26-           :platform  =>  :platform , 
2724          :input  =>  :input 
2825        } 
2926      end 
@@ -33,17 +30,14 @@ def self.types_mapping
3330        { 
3431          :type  =>  :"AuthenticationType" , 
3532          :name  =>  :"String" , 
36-           :platform  =>  :"Platform" , 
3733          :input  =>  :"AuthInputPartial" 
3834        } 
3935      end 
4036
4137      # List of attributes with nullable: true 
4238      def  self . openapi_nullable 
4339        Set . new ( 
44-           [ 
45-             :platform 
46-           ] 
40+           [ ] 
4741        ) 
4842      end 
4943
@@ -78,10 +72,6 @@ def initialize(attributes = {})
7872          self . name  =  attributes [ :name ] 
7973        end 
8074
81-         if  attributes . key? ( :platform ) 
82-           self . platform  =  attributes [ :platform ] 
83-         end 
84- 
8575        if  attributes . key? ( :input ) 
8676          self . input  =  attributes [ :input ] 
8777        end 
@@ -94,7 +84,6 @@ def ==(other)
9484        self . class  == other . class  &&
9585          type  == other . type  &&
9686          name  == other . name  &&
97-           platform  == other . platform  &&
9887          input  == other . input 
9988      end 
10089
@@ -107,7 +96,7 @@ def eql?(other)
10796      # Calculates hash code according to all attributes. 
10897      # @return [Integer] Hash code 
10998      def  hash 
110-         [ type ,  name ,  platform ,   input ] . hash 
99+         [ type ,  name ,  input ] . hash 
111100      end 
112101
113102      # Builds the object from hash 
0 commit comments