Class ApDepositAddressResult
- Namespace
- AkashicPaySDK.Model
- Assembly
- AkashicPaySDK.dll
Represents the result of a deposit address request in the Akashic Pay system.
public class ApDepositAddressResult
- Inheritance
-
ApDepositAddressResult
- Inherited Members
Constructors
ApDepositAddressResult()
Initializes a new instance of the ApDepositAddressResult class.
public ApDepositAddressResult()
ApDepositAddressResult(string?, string)
Initializes a new instance of the ApDepositAddressResult class with specified address and identifier.
public ApDepositAddressResult(string? address, string identifier)
Parameters
address
stringThe deposit address.
identifier
stringThe identifier associated with the deposit address.
Properties
Address
The deposit address.
public string? Address { get; set; }
Property Value
Identifier
The identifier associated with the deposit address.
public string Identifier { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.