export type UpdateAnimationDto = { /** * The animation's name */ name: string; /** * The visibility status of the animation */ visibility: UpdateAnimationDto.visibility; }; export declare namespace UpdateAnimationDto { /** * The visibility status of the animation */ enum visibility { PUBLIC = "PUBLIC", PRIVATE = "PRIVATE" } }