import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_SpecStatusSchema" of service "API_REALSUBSTANCE". */ export declare class SpecStatusSchema extends Entity implements SpecStatusSchemaType { /** * Technical entity name for SpecStatusSchema. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the SpecStatusSchema entity */ static _keys: string[]; /** * Subordinate Object Type. * Specifies the subobject type. You can define the default status scheme at subobject type level. In PLM Web UI, if you select a subobject type and then select the Status tab, the system automatically displays this default status scheme. This applies only for objects that have subobject types. If an object does not have a subobject type, you leave this field empty. * For materials, you can define a default status scheme based on the material type, for example.You can define the input help for subobject types in Customizing for Status and Action Management under Define Status Scheme. * Maximum length: 20. */ specificationType: DeserializedType; /** * Status Scheme. * The status scheme defines the initial status and the possible transitions from one status to another. * You define a status scheme in Customizing for Recipe Development under Status Management -> Define Status Scheme. * Maximum length: 20. */ specificationHdrStsSchema: DeserializedType; /** * Default Status Scheme. * Defines a default status scheme for a specific object type. * If you select the Status tab, the system automatically displays the default status scheme you have defined here. * @nullable */ specificationHdrStsDfltSchema?: DeserializedType | null; } export interface SpecStatusSchemaType { specificationType: DeserializedType; specificationHdrStsSchema: DeserializedType; specificationHdrStsDfltSchema?: DeserializedType | null; } //# sourceMappingURL=SpecStatusSchema.d.ts.map