Struct AccountResponse
AccountResponse wraps the Account type in a response.
Assembly: cs.temp.dll.dll
Syntax
[Serializable]
[AlgoApiFormatter(typeof(WrappedValueFormatter<AccountResponse, Account>), "", "", 0)]
public struct AccountResponse : IEquatable<AccountResponse>, IWrappedValue<Account>
Constructors
AccountResponse(Account)
Declaration
public AccountResponse(Account value)
Parameters
Type |
Name |
Description |
Account |
value |
|
Properties
Account
Declaration
public Account Account { get; }
Property Value
WrappedValue
Declaration
public Account WrappedValue { get; set; }
Property Value
Methods
Equals(AccountResponse)
Declaration
public bool Equals(AccountResponse other)
Parameters
Returns
Operators
Implicit(Account to AccountResponse)
Declaration
public static implicit operator AccountResponse(Account value)
Parameters
Type |
Name |
Description |
Account |
value |
|
Returns
Implicit(AccountResponse to Account)
Declaration
public static implicit operator Account(AccountResponse wrapper)
Parameters
Returns
Implements