api.rs 848 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. pub use serde::{Serialize,Deserialize};
  2. #[derive(Deserialize)]
  3. pub struct AuthorizationRequestQuery {
  4. response_type: String,
  5. client_id: String,
  6. redirect_uri: String,
  7. scope: Option<String>,
  8. state: Option<String>
  9. }
  10. #[derive(Serialize)]
  11. pub struct AuthorizationResponse {
  12. response_type: String,
  13. state: Option<String>,
  14. code: Option<String>,
  15. }
  16. #[derive(Serialize)]
  17. pub enum AuthorizationResponseErrorType {
  18. InvalidRequest,
  19. UnauthorizedClient,
  20. AccessDenied,
  21. UnsupportedResponseType,
  22. InvalidScope,
  23. ServerError,
  24. TemporarilyUnavailable
  25. }
  26. #[derive(Serialize)]
  27. pub struct AuthorizationResponseError {
  28. state: Option<String>,
  29. error: AuthorizationResponseErrorType
  30. }
  31. #[derive(Deserialize)]
  32. pub struct TokenRequestParameters {
  33. }
  34. #[derive(Serialize)]
  35. pub struct TokenResponse {
  36. }