@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
57 lines (56 loc) • 1.59 kB
TypeScript
/**
* AskNews API
* AskNews API
*
* The version of the OpenAPI document: 0.18.6
* 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;
/**
*
* @type {string}
* @memberof ResendBroadcastParams
*/
subject?: string;
/**
* 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;
}
/**
* Check if a given object implements the ResendBroadcastParams interface.
*/
export declare function instanceOfResendBroadcastParams(value: object): boolean;
export declare function ResendBroadcastParamsFromJSON(json: any): ResendBroadcastParams;
export declare function ResendBroadcastParamsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResendBroadcastParams;
export declare function ResendBroadcastParamsToJSON(value?: ResendBroadcastParams | null): any;