/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { EmailRecipientDto } from './email-recipient-dto'; /** * * @export * @interface EmailRecipientsDto */ export interface EmailRecipientsDto { /** * * @type {Array} * @memberof EmailRecipientsDto */ to?: Array; /** * * @type {Array} * @memberof EmailRecipientsDto */ cc?: Array; /** * * @type {Array} * @memberof EmailRecipientsDto */ bcc?: Array; }