/** * @type RequestOrderAccessCodeRequest: Represents a request to generate a time-limited access code for a guest order. * * @property email: The email address of the shopper. Must match the email address associated with the order for a code to be generated and sent. * - **Max Length:** 256 * */ export type RequestOrderAccessCodeRequest = { email: string; } & { [key: string]: any; };