Files
hcs/Hcs.Broker/Api/Payload/Payments/ImportSupplierNotificationsOfOrderExecutionPayload.cs

37 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Hcs.Broker.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;
}
}