/*! Copyright (c) 2019, XAPPmedia */ export type ConversationTypeUnspecified = "TYPE_UNSPECIFIED"; export declare const CONVERSATION_TYPE_UNSPECIFIED: ConversationTypeUnspecified; export type ConversationTypeNew = "NEW"; export declare const CONVERSATION_TYPE_NEW: ConversationTypeNew; export type ConversationTypeActive = "ACTIVE"; export declare const CONVERSATION_TYPE_ACTIVE: ConversationTypeActive; /** * Conversation type * @see https://developers.google.com/actions/reference/rest/Shared.Types/ConversationType */ export type ConversationType = ConversationTypeActive | ConversationTypeNew | ConversationTypeUnspecified; /** * Representation of the current conversation * * @export * @interface Conversation */ export interface Conversation { conversationId: string; type: ConversationType; conversationToken?: string; }