C# Класс Recurly.Transaction

Наследование: Recurly.RecurlyEntity
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Create ( ) : void

Creates an invoice, charge, and optionally account

Equals ( Transaction transaction ) : bool
Equals ( object obj ) : bool
GetHashCode ( ) : int
GetInvoice ( ) : Invoice
InvoiceNumberWithPrefix ( ) : string
Refund ( int refund = null ) : void

Refunds a transaction

ToString ( ) : string
Transaction ( Account account, int amountInCents, string currency ) : System

Creates a new transaction

Transaction ( string accountCode, int amountInCents, string currency ) : System

Creates a new transaction

Приватные методы

Метод Описание
ReadXml ( XmlTextReader reader ) : void
Transaction ( ) : System
Transaction ( XmlTextReader reader ) : System
WriteXml ( XmlTextWriter xmlWriter ) : void

Описание методов

Create() публичный Метод

Creates an invoice, charge, and optionally account
public Create ( ) : void
Результат void

Equals() публичный Метод

public Equals ( Transaction transaction ) : bool
transaction Transaction
Результат bool

Equals() публичный Метод

public Equals ( object obj ) : bool
obj object
Результат bool

GetHashCode() публичный Метод

public GetHashCode ( ) : int
Результат int

GetInvoice() публичный Метод

public GetInvoice ( ) : Invoice
Результат Invoice

InvoiceNumberWithPrefix() публичный Метод

public InvoiceNumberWithPrefix ( ) : string
Результат string

Refund() публичный Метод

Refunds a transaction
public Refund ( int refund = null ) : void
refund int If present, the amount to refund. Otherwise it is a full refund.
Результат void

ToString() публичный Метод

public ToString ( ) : string
Результат string

Transaction() публичный Метод

Creates a new transaction
public Transaction ( Account account, int amountInCents, string currency ) : System
account Account
amountInCents int
currency string
Результат System

Transaction() публичный Метод

Creates a new transaction
public Transaction ( string accountCode, int amountInCents, string currency ) : System
accountCode string
amountInCents int
currency string
Результат System