Interface UserApi

All Known Implementing Classes:
UserApiController

@Generated(value="org.openapitools.codegen.languages.SpringCodegen", date="2022-09-25T19:34:30.087552571Z[Etc/UTC]") @Validated public interface UserApi
  • Method Summary

    Modifier and Type
    Method
    Description
    default reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<AccountSubscription>>
    getUserSubscription(UUID xRequestID, org.springframework.web.server.ServerWebExchange exchange)
    GET /user/subscription : Информации о подписке пользователя
  • Method Details

    • getUserSubscription

      @RequestMapping(method=GET, value="/user/subscription", produces="application/json") default reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<AccountSubscription>> getUserSubscription(@RequestHeader(value="X-Request-ID",required=true) UUID xRequestID, org.springframework.web.server.ServerWebExchange exchange)
      GET /user/subscription : Информации о подписке пользователя
      Parameters:
      xRequestID - Уникальный идентификатор запроса к системе (required)
      Returns:
      Получена информация о подписке пользователя (status code 200) or Переданы ошибочные данные (status code 400) or Несанкционированный доступ, использовались неверные учетные данные. (status code 401) or Доступ запрещен. (status code 403) or Аккаунты не найдены (status code 404)