class Attio::OAuth::Token

def update_from(other_token)

def update_from(other_token)
  @access_token = other_token.access_token
  @refresh_token = other_token.refresh_token if other_token.refresh_token
  @token_type = other_token.token_type
  @expires_in = other_token.expires_in
  @expires_at = other_token.expires_at
  @scope = other_token.scope
  @created_at = other_token.created_at
end