/**
 * AskNews API
 * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod)
 *
 * The version of the OpenAPI document: 0.24.66
 * Contact: contact@emergentmethods.ai
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { ReplyTo } from './ReplyTo';
/**
 *
 * @export
 * @interface ResendBroadcastParams
 */
export interface ResendBroadcastParams {
    /**
     * The sender email address, use the format: Your Name <sender@domain.com>
     * @type {string}
     * @memberof ResendBroadcastParams
     */
    sender: string;
    /**
     *
     * @type {ReplyTo}
     * @memberof ResendBroadcastParams
     */
    replyTo?: ReplyTo | null;
    /**
     *
     * @type {string}
     * @memberof ResendBroadcastParams
     */
    subject?: string | null;
    /**
     * The audience id that the broadcast will be sent to
     * @type {string}
     * @memberof ResendBroadcastParams
     */
    audienceId: string;
    /**
     * Resend API key to use
     * @type {string}
     * @memberof ResendBroadcastParams
     */
    resendApiKey: string;
    /**
     * Append 'Generated by AskNews AI' watermark
     * @type {boolean}
     * @memberof ResendBroadcastParams
     */
    asknewsWatermark?: boolean;
}
/**
 * Check if a given object implements the ResendBroadcastParams interface.
 */
export declare function instanceOfResendBroadcastParams(value: object): value is ResendBroadcastParams;
export declare function ResendBroadcastParamsFromJSON(json: any): ResendBroadcastParams;
export declare function ResendBroadcastParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResendBroadcastParams;
export declare function ResendBroadcastParamsToJSON(json: any): ResendBroadcastParams;
export declare function ResendBroadcastParamsToJSONTyped(value?: ResendBroadcastParams | null, ignoreDiscriminator?: boolean): any;
