mirror of
https://github.com/donl/plivo-node.git
synced 2026-05-25 22:07:10 -06:00
26 lines
812 B
TypeScript
26 lines
812 B
TypeScript
export class CallFeedbackResponse {
|
|
constructor(params: object);
|
|
apiId: string;
|
|
message: string;
|
|
status: string;
|
|
}
|
|
export class CallFeedback extends PlivoResource {
|
|
constructor(client: Function, data?: {});
|
|
id: string;
|
|
[clientKey]: symbol;
|
|
}
|
|
/**
|
|
* Represents a CallFeedback Interface
|
|
* @constructor
|
|
* @param {function} client - make api call
|
|
* @param {object} [data] - data of call
|
|
*/
|
|
export class CallFeedbackInterface extends PlivoResourceInterface {
|
|
constructor(client: Function, data?: {});
|
|
create(callUUID: string, rating: string, issues?: never[], notes?: string): Promise<CallFeedbackResponse>;
|
|
[clientKey]: symbol;
|
|
}
|
|
import { PlivoResource } from "../base";
|
|
declare const clientKey: unique symbol;
|
|
import { PlivoResourceInterface } from "../base";
|
|
export {};
|