The possible alterations that may be performed on the UDT. Only one out of the two may be used at a time.
// Add new fields{ add: { fields: { newField: 'text', anotherField: { type: 'int' }, }, },}// Rename existing fields{ rename: { fields: { oldName: 'newName', street: 'streetAddress', }, },} Copy
// Add new fields{ add: { fields: { newField: 'text', anotherField: { type: 'int' }, }, },}// Rename existing fields{ rename: { fields: { oldName: 'newName', street: 'streetAddress', }, },}
Optional
Add new fields to the UDT.
Rename existing fields in the UDT.
The possible alterations that may be performed on the UDT. Only one out of the two may be used at a time.
Example