Skip to content

Commit

Permalink
applied formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lalwani committed Mar 2, 2024
1 parent 2c9de43 commit a1a84fa
Showing 1 changed file with 4 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,11 @@ package com.uber.sdk2.auth.api.response

import com.uber.sdk2.auth.api.exception.AuthException

/**
* Represents the response from the authentication request.
*/
/** Represents the response from the authentication request. */
sealed class AuthResult {
/**
* Represents the success response from the authentication request.
*/
/** Represents the success response from the authentication request. */
data class Success(val authCode: String, val accessToken: AccessToken) : AuthResult()

/**
* Represents the error response from the authentication request.
*/
/** Represents the error response from the authentication request. */
data class Error(val authException: AuthException) : AuthResult()
}
}

0 comments on commit a1a84fa

Please sign in to comment.