/* Options: Date: 2024-12-23 11:21:08 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReferFriendLinkUsedRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/share/refer-friend-link-used", Verbs="POST") open class ReferFriendLinkUsedRequest : IReturn, IPost { var referFriendToken:String? = null companion object { private val responseType = ReferFriendLinkUsedResponse::class.java } override fun getResponseType(): Any? = ReferFriendLinkUsedRequest.responseType } open class ReferFriendLinkUsedResponse { var referringUser:ReferFriendUser? = null var expiresAt:Date? = null var state:ReferFriendState? = null } open class ReferFriendUser { var firstName:String? = null var lastName:String? = null var profilePhotoUrl:String? = null } enum class ReferFriendState { Available, Awarded, CanNotReferYourself, YouWereAlreadySignedUp, Expired, }