cv-dialog-sdk
Version:
Catavolt Dialog Javascript API
12 lines (10 loc) • 338 B
text/typescript
import { ReferringObject } from './ReferringObject';
import { RedirectionType } from './types';
export interface Redirection {
readonly id: string;
readonly referringObject: ReferringObject;
readonly refreshNeeded: boolean;
readonly sessionId: string;
readonly tenantId: string;
readonly type: RedirectionType;
}