/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface CustomFieldContextUpdateDetails { /** * The description of the custom field context. The maximum length is 255 characters. */ description?: string; /** * The name of the custom field context. The name must be unique. The maximum length is 255 characters. */ name?: string; } //# sourceMappingURL=CustomFieldContextUpdateDetails.d.ts.map