Files
hcs/Hcs.Client/Client/Api/Payload/Payments/ImportNotificationsOfOrderExecutionPayload.cs

49 lines
1.5 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.

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