/**
 * Interface defining the property object that describes the cases.
 *
 * @see [CreateJourney](https://github.com/goboomtown/entities-ts/tree/master/docs)
 *
 * @OvationCXMApi
 */
export interface Journey {
    id?: string;
    name: string;
    internalName?: string;
    description?: string;
    idOrg: string;
    idActiveFlow?: string;
    isPublished?: boolean;
    dateCreated: string;
    dateUpdated?: string;
}
