ru.tinkoff.acquiring.sdk.models.AddUserProp.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Library which allows you to use internet acquiring in your android app
package ru.tinkoff.acquiring.sdk.models
import com.google.gson.annotations.SerializedName
import java.io.Serializable
/**
* Дополнительный реквизит пользователя (тег 1084)
*
* @author Michael Babayan
*/
data class AddUserProp(
/**
* Наименование дополнительного реквизита пользователя (тег 1085)
*/
@SerializedName("Name")
val name: String,
/**
* Значение дополнительного реквизита пользователя (тег1086)
*/
@SerializedName("Value")
val value: String
) : Serializable
© 2015 - 2025 Weber Informatics LLC | Privacy Policy