Add payment import

This commit is contained in:
2025-09-15 11:28:08 +09:00
parent 5ebcdfae6e
commit e37f0b25ef
9 changed files with 250 additions and 0 deletions

View File

@ -0,0 +1,38 @@
using System;
namespace Hcs.Client.Api.Payload.Payments
{
// http://open-gkh.ru/Payment/importSupplierNotificationsOfOrderExecutionRequest/SupplierNotificationOfOrderExecution.html
public class ImportSupplierNotificationsOfOrderExecutionPayload
{
/// <summary>
/// Дата внесения платы (в случае отсутствия: дата поступления средств)
/// </summary>
public DateTime orderDate;
/// <summary>
/// Необязательное. Месяц, за который вносится плата. Указывать совместно с <see cref="year"/>.
/// </summary>
public int? month;
/// <summary>
/// Необязательное. Год, за который вносится плата. Указывать совместно с <see cref="month"/>.
/// </summary>
public short? year;
/// <summary>
/// Идентификатор платежного документа
/// </summary>
public string paymentDocumentId;
/// <summary>
/// Сумма
/// </summary>
public decimal amount;
/// <summary>
/// Необязательное. Признак онлайн-оплаты.
/// </summary>
public bool? onlinePayment;
}
}