1.0.1 Add descriptions of methods

This commit is contained in:
yawaflua
2024-03-10 21:09:44 +03:00
parent 9258cb8c97
commit a2b48651ec
8 changed files with 398 additions and 25 deletions

View File

@@ -9,11 +9,34 @@ namespace Lava.NET.Types.LavaAPI
public class TransactionParam : IBase
{
/// <summary>
/// Тип перевода
/// withdraw - вывод
/// transfer - перевод
/// </summary>
public string? transfer_type { get; set; }
/// <summary>
/// Номер кошелька
/// </summary>
public string? account { get; set; }
/// <summary>
/// С какого периода показывать транзакции
/// Пример: 21.10.2021 10:30:30
/// </summary>
public string? period_start { get; set; }
/// <summary>
/// До какого времени показывать транзакции
///
/// Пример: 21.10.2021 11:30:00
/// </summary>
public string? period_end { get; set; }
/// <summary>
/// Сдвиг
/// </summary>
public int? offset { get; set; }
/// <summary>
/// Лимит
/// </summary>
public int? limit { get; set; }
}