Class AccountChannels
The expected response from an AccountChannelsRequest .
Inheritance
System.Object
AccountChannels
Namespace: Xrpl.Models.Methods
Assembly: Xrpl.dll
Syntax
public class AccountChannels : object
Properties
| Improve this Doc View SourceAccount
The address of the source/owner of the payment channels.
This corresponds to the account field of the request.
Declaration
public string Account { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Channels
Payment channels owned by this account.
Declaration
public List<Channel> Channels { get; set; }
Property Value
| Type | Description |
|---|---|
| List<Channel> |
Limit
The limit to how many channel objects were actually returned by this request.
Declaration
public int? Limit { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
Marker
Server-defined value for pagination.
Pass this to the next call to resume getting results where this call left off.
Omitted when there are no additional pages after this one.
Declaration
public object Marker { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Object |