Class Body3
Request body for pre-generating a wallet
public class Body3
- Inheritance
-
Body3
- Inherited Members
Properties
AdditionalProperties
[JsonExtensionData]
public IDictionary<string, object> AdditionalProperties { get; set; }
Property Value
[JsonProperty("email", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Email { get; set; }
Property Value
Phone
[JsonProperty("phone", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string Phone { get; set; }
Property Value
Type
[JsonProperty("type", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public Body3Type Type { get; set; }
Property Value
UserId
[JsonProperty("userId", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string UserId { get; set; }
Property Value
WalletAddress
A valid Ethereum address (0x-prefixed hex string) or ENS name (e.g., vitalik.eth).
[JsonProperty("walletAddress", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public string WalletAddress { get; set; }