/** * MailSlurp API * MailSlurp is an API for sending and receiving emails and SMS from dynamically allocated email addresses and phone numbers. It\'s designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) - Get an [API KEY](https://app.mailslurp.com/sign-up/) - Generated [SDK Clients](https://docs.mailslurp.com/) - [Examples](https://github.com/mailslurp/examples) repository * * The version of the OpenAPI document: 6.5.2 * Contact: contact@mailslurp.dev * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface DevicePreviewShareLinkDto */ export interface DevicePreviewShareLinkDto { /** * * @type {string} * @memberof DevicePreviewShareLinkDto */ id: string; /** * * @type {string} * @memberof DevicePreviewShareLinkDto */ runId: string; /** * * @type {string} * @memberof DevicePreviewShareLinkDto */ tokenPrefix: string; /** * Raw share token. Only returned immediately after creation. * @type {string} * @memberof DevicePreviewShareLinkDto */ token?: string | null; /** * Public webapp URL. Only returned when the raw token is available. * @type {string} * @memberof DevicePreviewShareLinkDto */ shareUrl?: string | null; /** * * @type {string} * @memberof DevicePreviewShareLinkDto */ label?: string | null; /** * * @type {Date} * @memberof DevicePreviewShareLinkDto */ expiresAt?: Date | null; /** * * @type {Date} * @memberof DevicePreviewShareLinkDto */ revokedAt?: Date | null; /** * * @type {Date} * @memberof DevicePreviewShareLinkDto */ lastAccessedAt?: Date | null; /** * * @type {number} * @memberof DevicePreviewShareLinkDto */ accessCount: number; /** * * @type {Date} * @memberof DevicePreviewShareLinkDto */ createdAt: Date; /** * * @type {Date} * @memberof DevicePreviewShareLinkDto */ updatedAt: Date; } export declare function DevicePreviewShareLinkDtoFromJSON(json: any): DevicePreviewShareLinkDto; export declare function DevicePreviewShareLinkDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DevicePreviewShareLinkDto; export declare function DevicePreviewShareLinkDtoToJSON(value?: DevicePreviewShareLinkDto | null): any;