__anonymousmixin HiBONRecord!(q{
this(
string vaccineType,
string packageID,
int numberOfVaccines,
string destination,
string pickuppoint,
string startTime,
string endTime,
int payment,
Pubkey owner, // new token owner
Pubkey finalReceiver,
) {
this.vaccineType = vaccineType;
this.packageID = packageID;
this.numberOfVaccines = numberOfVaccines;
this.destination = destination;
this.pickuppoint = pickuppoint;
this.startTime = startTime;
this.endTime = endTime;
this.payment = payment;
this.owner = owner;
this.finalReceiver = finalReceiver;
}
})