Skip to content

Commit

Permalink
fix(callFoward): added callForward type
Browse files Browse the repository at this point in the history
  • Loading branch information
sokn-sys authored and Waseemraj committed Aug 16, 2023
1 parent e01f3a9 commit 4173116
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/webexcalling/src/ICallForwardAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,21 @@ export interface IVoicemailSettingsResponse {
message?: string;
}

export interface ICallForwardSettingValueResponse {
statusCode?: number;
data?: {
callSetting: CallForwardAlwaysSetting;
};
message?: string;
}

export type CallForwardAlwaysSetting = {
enabled: boolean;
ringReminderEnabled?: boolean;
destinationVoicemailEnabled?: boolean;
destination?: string;
};

export interface ICallSettingsAdapter {
refreshCallForward(): void;
getCallForwardSettings(): Observable<string>;
Expand Down

0 comments on commit 4173116

Please sign in to comment.