AddLaborLevelDetailInValidateCustomFieldName Property | |
Validates if the custom field name exists when passing in a custom field
Namespace: AppOne.Services.V2.ContractsAssembly: AppOne.Web.Service (in AppOne.Web.Service.dll) Version: 1.0.141
Syntax public bool? ValidateCustomFieldName { get; set; }
function get_ValidateCustomFieldName();
function set_ValidateCustomFieldName(value);
Property Value
NullableBooleanRemarks
Validates if the custom field name exists when passing in a custom field. When a
AddLaborLevelDetailCustomField object is passed as part of the payload the only
lookup provided is the "Name" property. If the name does not match a specific pre-defined labor level custom field then no custom field is added to the labor level detail.
When this property is enabled it will return an error message for each labor level detail custom field name that does not match an existing labor level custom field.
Example "AuthToken": "...",
"ValidateCustomField":true,
"Payload":[{
"Code":"LLDCODE",
"CustomFields":[{
"Name":"Date_LL_CustomField",
"Value":"2016-01-04T22:02:08.296Z"
}]
...
See Also