Nominated Facility
class NominatedFacility(var currentlyAMember: Boolean = false, var nominationId: Int = 0, var clubName: String? = "", var managerName: String? = "", var clubPhone: String? = "", var address1: String? = "", var address2: String? = "", var city: String? = "", var stateCode: String? = "", var zip: String? = "", var countryId: Int? = 0, var createdDateTime: String? = "")
Represents a facility that has been nominated by a user.
This data class holds all the relevant information about a nominated fitness club or facility, including its contact details, address, and nomination status.
Constructors
Link copied to clipboard
constructor(currentlyAMember: Boolean = false, nominationId: Int = 0, clubName: String? = "", managerName: String? = "", clubPhone: String? = "", address1: String? = "", address2: String? = "", city: String? = "", stateCode: String? = "", zip: String? = "", countryId: Int? = 0, createdDateTime: String? = "")
Properties
Link copied to clipboard
The date and time when the nomination was created, as a String.
Link copied to clipboard
Indicates whether the member is currently registered with the facility.
Link copied to clipboard
The name of the manager at the facility, if known.
Link copied to clipboard
The unique identifier for this nomination record.