C# Class Recurly.Accounts

ファイルを表示 Open project: recurly/recurly-client-net Class Usage Examples

Public Methods

Method Description
Close ( string accountCode ) : void

Close the account and cancel any active subscriptions (if there is one). Note: This does not create a refund for any time remaining.

Get ( string accountCode ) : Account

Lookup a Recurly account

List ( Account state = Account.AccountState.Active ) : RecurlyList

Lists accounts, limited to state

Reopen ( string accountCode ) : void

Reopen an existing account in recurly.

Method Details

Close() public static method

Close the account and cancel any active subscriptions (if there is one). Note: This does not create a refund for any time remaining.
public static Close ( string accountCode ) : void
accountCode string Account Code
return void

Get() public static method

Lookup a Recurly account
public static Get ( string accountCode ) : Account
accountCode string
return Account

List() public static method

Lists accounts, limited to state
public static List ( Account state = Account.AccountState.Active ) : RecurlyList
state Account Account state to retrieve
return RecurlyList

Reopen() public static method

Reopen an existing account in recurly.
public static Reopen ( string accountCode ) : void
accountCode string Account Code
return void