2525module AsposeCellsCloud
2626
2727 class AccessTokenResponse
28- attr_accessor :_expires
28+ attr_accessor :expires
2929
3030 attr_accessor :access_token
3131
32- attr_accessor :_issued
32+ attr_accessor :issued
3333
3434 attr_accessor :client_refresh_token_life_time_in_minutes
3535
@@ -45,9 +45,9 @@ class AccessTokenResponse
4545 # Attribute mapping from ruby-style variable name to JSON key.
4646 def self . attribute_map
4747 {
48- :'_expires ' => :'. expires' ,
48+ :'expires ' => :'expires' ,
4949 :'access_token' => :'access_token' ,
50- :'_issued ' => :'. issued' ,
50+ :'issued ' => :'issued' ,
5151 :'client_refresh_token_life_time_in_minutes' => :'clientRefreshTokenLifeTimeInMinutes' ,
5252 :'expires_in' => :'expires_in' ,
5353 :'token_type' => :'token_type' ,
@@ -59,9 +59,9 @@ def self.attribute_map
5959 # Attribute type mapping.
6060 def self . swagger_types
6161 {
62- :'_expires ' => :'String' ,
62+ :'expires ' => :'String' ,
6363 :'access_token' => :'String' ,
64- :'_issued ' => :'String' ,
64+ :'issued ' => :'String' ,
6565 :'client_refresh_token_life_time_in_minutes' => :'String' ,
6666 :'expires_in' => :'Integer' ,
6767 :'token_type' => :'String' ,
@@ -78,16 +78,16 @@ def initialize(attributes = {})
7878 # convert string to symbol for hash key
7979 attributes = attributes . each_with_object ( { } ) { |( k , v ) , h | h [ k . to_sym ] = v }
8080
81- if attributes . has_key? ( :'. expires' )
82- self . _expires = attributes [ :'. expires' ]
81+ if attributes . has_key? ( :'expires' )
82+ self . expires = attributes [ :'expires' ]
8383 end
8484
8585 if attributes . has_key? ( :'access_token' )
8686 self . access_token = attributes [ :'access_token' ]
8787 end
8888
89- if attributes . has_key? ( :'. issued' )
90- self . _issued = attributes [ :'. issued' ]
89+ if attributes . has_key? ( :'issued' )
90+ self . issued = attributes [ :'issued' ]
9191 end
9292
9393 if attributes . has_key? ( :'clientRefreshTokenLifeTimeInMinutes' )
@@ -130,9 +130,9 @@ def valid?
130130 def ==( o )
131131 return true if self . equal? ( o )
132132 self . class == o . class &&
133- _expires == o . _expires &&
133+ expires == o . expires &&
134134 access_token == o . access_token &&
135- _issued == o . _issued &&
135+ issued == o . issued &&
136136 client_refresh_token_life_time_in_minutes == o . client_refresh_token_life_time_in_minutes &&
137137 expires_in == o . expires_in &&
138138 token_type == o . token_type &&
@@ -149,7 +149,7 @@ def eql?(o)
149149 # Calculates hash code according to all attributes.
150150 # @return [Fixnum] Hash code
151151 def hash
152- [ _expires , access_token , _issued , client_refresh_token_life_time_in_minutes , expires_in , token_type , client_id , refresh_token ] . hash
152+ [ expires , access_token , issued , client_refresh_token_life_time_in_minutes , expires_in , token_type , client_id , refresh_token ] . hash
153153 end
154154
155155 # Builds the object from hash
0 commit comments