API/Autodoc/Files/IPurchase.cs.md


Namespaces

Name

Classes

Name
interface RuStore::PayClient::IPurchase — Общий интерфейс IPurchase.

Source code

#nullable enable

using System;

namespace RuStore.PayClient {

    public interface IPurchase {

        PurchaseId purchaseId { get; }

        InvoiceId invoiceId { get; }

        OrderId? orderId { get; }

        PurchaseType purchaseType { get; }

        Enum status { get; }

        Description description { get; }

        DateTime? purchaseTime { get; }

        Price price { get; }

        AmountLabel amountLabel { get; }

        Currency currency { get; }

        DeveloperPayload? developerPayload { get; }

        bool sandbox { get; }
    }
}

Назад