export interface AudioNativeEditContentResponseModel {
    /** The ID of the project. */
    projectId: string;
    /** Whether the project is currently being converted. */
    converting: boolean;
    /** Whether the project is currently being published. */
    publishing: boolean;
    /** The HTML snippet to embed the Audio Native player. */
    htmlSnippet: string;
}
