ContentModelling
ContentModelling
ContentModelling for creating/updating ContentTypes.
ContentModelling model = new ContentModelling(){
Title = " This is title ",
Uid = "The uid",
Schema = new List<Field>(){
new Field();
};
};| Name | Type | Description |
|---|---|---|
| Uid | string | UID for the content type. |
| Title | string | Title for the content type. |
| FieldRules | List<FieldRules> | List of field rules for the content type fields. |
| Options | Option | Option for the content types |
| Schema | List<Field> | Schema is list of the field you want to create within content type |