/* tslint:disable */ /* eslint-disable */ /** * 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. */ import { exists, mapValues } from '../runtime'; import { CreateDevicePreviewOptions, CreateDevicePreviewOptionsFromJSON, CreateDevicePreviewOptionsFromJSONTyped, CreateDevicePreviewOptionsToJSON, } from './'; /** * * @export * @interface CreateDevicePreviewProfileOptions */ export interface CreateDevicePreviewProfileOptions { /** * * @type {string} * @memberof CreateDevicePreviewProfileOptions */ localPart: string; /** * * @type {string} * @memberof CreateDevicePreviewProfileOptions */ displayName?: string | null; /** * * @type {CreateDevicePreviewOptions} * @memberof CreateDevicePreviewProfileOptions */ options?: CreateDevicePreviewOptions | null; /** * * @type {boolean} * @memberof CreateDevicePreviewProfileOptions */ enabled?: boolean | null; } export function CreateDevicePreviewProfileOptionsFromJSON( json: any ): CreateDevicePreviewProfileOptions { return CreateDevicePreviewProfileOptionsFromJSONTyped(json, false); } export function CreateDevicePreviewProfileOptionsFromJSONTyped( json: any, ignoreDiscriminator: boolean ): CreateDevicePreviewProfileOptions { if (json === undefined || json === null) { return json; } return { localPart: json['localPart'], displayName: !exists(json, 'displayName') ? undefined : json['displayName'], options: !exists(json, 'options') ? undefined : CreateDevicePreviewOptionsFromJSON(json['options']), enabled: !exists(json, 'enabled') ? undefined : json['enabled'], }; } export function CreateDevicePreviewProfileOptionsToJSON( value?: CreateDevicePreviewProfileOptions | null ): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { localPart: value.localPart, displayName: value.displayName, options: CreateDevicePreviewOptionsToJSON(value.options), enabled: value.enabled, }; }