Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 1.76 KB

ItemNumberDto.md

File metadata and controls

17 lines (13 loc) · 1.76 KB

ItemNumberDto

Properties

Name Type Description Notes
id string Elements GUID identifier.
string_representation string Will return this ItemNumber as point delimited string. Will not distinguish between upper- and lowercase and return an all-lowercase representation. Will consider first numbers, then characters, e.g. 1a is considered preceding aa. [optional]
is_schema_compliant bool Indicates if the characters and the length of the Identifiers match the current ItemNumberSchema.
item_number_schema \Dangl\AVACloud\Model\ItemNumberSchemaDto Used for representing and validating this ItemNumber. [optional]
identifiers string[] Collection of the single identifiers in this ItemNumber. P.e., "02.03.004" will have three elements "02", "03", and "004". Since ReadOnlyObservableCollection`1 does have the event set to protected, it can be accessed like this: (itemNumber.Identifiers as INotifyCollectionChanged).CollectionChanged [optional]
is_lot bool This indicates if this item number is at the lot level. Find out more about lots in the documentation.
hierarchy_level int This is a zero based hierarchy level. It's set automatically when used in the context of a Project, and can be used to identify the hierarchy level of the current element.
is_attached_to_position bool This property indicates if this ItemNumber is attached to an object of the Position type.

[Back to Model list] [Back to API list] [Back to README]