ProfilePayments

data class ProfilePayments(val links: List<Link>, val cryptoWallets: List<CryptoWalletAddress>)

Deprecated

This class is deprecated and will be removed in a future release.

Replace with

com.gravatar.restapi.models.ProfilePayments

The user's public payment information. This is only provided in authenticated API requests.

Parameters

links

A list of payment URLs the user has added to their profile.

cryptoWallets

A list of crypto currencies the user accepts.

Constructors

Link copied to clipboard
constructor(links: List<Link>, cryptoWallets: List<CryptoWalletAddress>)

Properties

Link copied to clipboard
@SerializedName(value = "crypto_wallets")
val cryptoWallets: List<CryptoWalletAddress>
Link copied to clipboard
@SerializedName(value = "links")
val links: List<Link>