Class DepositPreauthQuery
Specify the DepositPreauth to retrieve. If a string, must be the ledger entry ID of the DepositPreauth entry, as hexadecimal. If an object, requires owner sub-field and either authorized or authorize_credentials sub-field.
Inheritance
object
DepositPreauthQuery
Namespace: Xrpl.Models.Methods
Assembly: Xrpl.dll
Syntax
public class DepositPreauthQuery
Properties
| Edit this page View SourceAuthorized
The account that received the preauthorization.
Declaration
[JsonPropertyName("authorized")]
public string? Authorized { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
AuthorizedCredentials
A set of credentials that received the preauthorization.
Declaration
[JsonPropertyName("authorized_credentials")]
public List<AuthorizedCredential>? AuthorizedCredentials { get; set; }
Property Value
| Type | Description |
|---|---|
| List<AuthorizedCredential> |
Owner
The account that provided the preauthorization.
Declaration
[JsonPropertyName("owner")]
public string Owner { get; set; }
Property Value
| Type | Description |
|---|---|
| string |