A particular 'superuser' ticket-holder can request to check in another ticket that belongs to the same event, by referencing the ID of the ticket.

interface CheckTicketInByIdRequest {
    checkerProof: Credential;
    ticketId: string;
}

Properties

checkerProof: Credential

A semaphore signature from the checker, used by the server to determine whether the checker has the required permissions to check this ticket in.

ticketId: string

The ticket ID to attempt to check in.

Generated using TypeDoc