/** * @swagger {components.schemas} CommonsModelStatus { "description": "Status of the model.", "type": "string", "enum": [ "unknown", "not_uploaded", "uploaded", "pending", "confirmed", "denied", "deleted" ] } */ /** Status of the model. */ export enum ShapeDiverCommonsModelStatus { UNKNOWN = 'unknown', NOT_UPLOADED = 'not_uploaded', UPLOADED = 'uploaded', PENDING = 'pending', CONFIRMED = 'confirmed', DENIED = 'denied', DELETED = 'deleted', }