Mika Scraper / TempMailCreateData
Interface: TempMailCreateData
Defined in: src/temp-mail/tempmail.ts:6
Represents the email record returned after the creation of a temporary email address.
Properties
- Type:
string
- Defined in:
src/temp-mail/tempmail.ts:7
- Description: The temporary email address created. This email can be used to receive messages for a limited period.
email_token
- Type:
string
- Defined in:
src/temp-mail/tempmail.ts:8
- Description: A token associated with the temporary email address, which can be utilized for verification or accessing its inbox.
deleted_in
- Type:
string
- Defined in:
src/temp-mail/tempmail.ts:9
- Description: A timestamp indicating when the temporary email address will be deleted. The format typically follows ISO 8601 standard.
Example
const tempMail: TempMailCreateData = {
email: "example123@tempmail.com",
email_token: "token123",
deleted_in: "2023-10-01T12:00:00Z"
};
Last updated on