sdk
sdk
/
com.tpay.sdk.api.models.payer
/
Payer
Payer
data
class
Payer
(
var
name
:
String
,
var
email
:
String
,
var
phone
:
String
?
,
var
address
:
Payer.Address
?
)
:
Parcelable
Class responsible for storing payer information.
Types
Constructors
Functions
Properties
Constructors
Payer
Link copied to clipboard
fun
Payer
(
name
:
String
,
email
:
String
,
phone
:
String
?
,
address
:
Payer.Address
?
)
Types
Address
Link copied to clipboard
data
class
Address
(
var
address
:
String
?
,
var
city
:
String
?
,
var
countryCode
:
String
?
,
var
postalCode
:
String
?
)
:
Parcelable
Functions
describe
Contents
Link copied to clipboard
abstract
fun
describeContents
(
)
:
Int
write
To
Parcel
Link copied to clipboard
abstract
fun
writeToParcel
(
p0
:
Parcel
,
p1
:
Int
)
Properties
address
Link copied to clipboard
var
address
:
Payer.Address
?
email
Link copied to clipboard
var
email
:
String
name
Link copied to clipboard
var
name
:
String
phone
Link copied to clipboard
var
phone
:
String
?