ReceiptEmailAvailabilityResponseDto

data class ReceiptEmailAvailabilityResponseDto(val available: Boolean? = null, val alternatives: List<String>? = null)

Parameters

available

This is a flag that states if the email address is available or not.

alternatives

This is a list of possible email addresses which are similar to the email address which the client requested availability for. If the email address is available, this list will be omitted.

Constructors

Link copied to clipboard
constructor(available: Boolean? = null, alternatives: List<String>? = null)

Properties

Link copied to clipboard
@SerializedName(value = "alternatives")
val alternatives: List<String>? = null
Link copied to clipboard
@SerializedName(value = "available")
val available: Boolean? = null