Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs for request params #132

Merged
merged 71 commits into from
Oct 29, 2023
Merged

Conversation

StarProxima
Copy link
Collaborator

  /// Получить Историю Транзакций.
  ///
  /// Для постраничного отображения нужно передать per_page — количество записей на одной странице.
  ///
  /// [start] - Начало промежутка. Формат: YYYY-MM-DD.
  /// [end] - Конец промежутка. Формат: YYYY-MM-DD.
  /// [perPage] - Количество записей в странице.
  /// [pageNum] - Номер страницы, начиная с 1.
  @GET('/transactions/history')
  Future<List<Transaction>> getTransactionsHistory({
    @Query('page_num') int pageNum = 1,
    @Query('start') DateTime? start,
    @Query('end') DateTime? end,
    @Query('per_page') int? perPage,
  });

@StarProxima StarProxima marked this pull request as ready for review October 28, 2023 11:28
@Carapacik Carapacik merged commit 7a2d86e into Carapacik:main Oct 29, 2023
2 checks passed
@Carapacik Carapacik added the documentation Improvements or additions to documentation label Feb 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants