All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.revenuemonster.sdk.model.common.LoyaltyMember.kt Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package io.revenuemonster.sdk.model.common

import io.revenuemonster.sdk.model.response.MemberTier
import kotlinx.datetime.Instant
import kotlinx.serialization.Serializable

@Serializable
data class LoyaltyMember(
    val id: String,
    val name: String,
    val email: String,
    val nric: String,
    val address: Address,
    val gender: String,
    val state: String,
    val birthDate: Instant,
    val loyaltyPoint: Int,
    val countryCode: String,
    val phoneNumber: String,
    val profileImageUrl: String,
    val memberTier : MemberTier?= null,
    val hasPinCode: Boolean,
    val status: String,
    val createdAt: Instant
)





© 2015 - 2024 Weber Informatics LLC | Privacy Policy