UserInfoHolder
public class UserInfoHolder : NSObject
The UserInfoHolder
class contains the representation of the metadata for a user/subscriber.
The metadata for one item consists of:
- userId - a unique identifier for this user
- accountId - a unique identifier of the account of the user
- fullName - the name and last name of the user
- gender - the gender of the user
- age - the age of the user
- ageRange - the age range of the user (i.e., 25-40)
- category - The category of the user (i.e., Junior)
- street - street component of the address
- city - city component of the address
- state - state component of the address
- postCode - postcode component of the address
- country - country component of the address
-
Declaration
Swift
public init (userId: String, accountId: String, fullName: String, gender: String, age: Int, ageRange: String, category: String, street: String, city: String, state: String, postCode: String, country: String)