@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
58 lines (57 loc) • 1.75 kB
TypeScript
/**
* AskNews API
* AskNews API
*
* The version of the OpenAPI document: 0.19.10
* 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;
}
/**
* 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;