/**
 * Interface defining the property object that describes the case log.
 * @see [CaseLogCreate](https://github.com/goboomtown/entities-ts/tree/master/docs)
 *
 * @OvationCXMApi
 */
export interface CaseLogCreate {
    notes: string;
    issueLogId: string;
}
