| Value | Description |
|---|
| `no_consent` | The customer has not given consent to receive any marketing communications |
| `unsubscribed` | The customers have unsubscribed from ALL marketing communications |
| `subscribed` | The customers are subscribed and are counted towards marketing caps |
| `archived` | The customers with `subscribed` status can be moved to `archived` to save consent, but they are not paid for |
- * @type {string}
- */
- 'marketing_status'?: UpdatePersonRequestMarketingStatusConst;
- /**
- * An object where each key represents a custom field. All custom fields are referenced as randomly generated 40-character hashes
- * @type {{ [key: string]: any | undefined; }}
- */
- 'custom_fields'?: { [key: string]: any | undefined; };
-}
-
- export const UpdatePersonRequestMarketingStatusConst = {
- no_consent: 'no_consent',
- unsubscribed: 'unsubscribed',
- subscribed: 'subscribed',
- archived: 'archived'
- } as const;
-
- export type UpdatePersonRequestMarketingStatusConst = typeof UpdatePersonRequestMarketingStatusConst[keyof typeof UpdatePersonRequestMarketingStatusConst];
-
-
diff --git a/src/versions/v2/models/update-product-field-request.ts b/src/versions/v2/models/update-product-field-request.ts
index e975cec2..08108953 100644
--- a/src/versions/v2/models/update-product-field-request.ts
+++ b/src/versions/v2/models/update-product-field-request.ts
@@ -33,10 +33,5 @@ export interface UpdateProductFieldRequest {
* @type {AddProductFieldRequestUiVisibility}
*/
'ui_visibility'?: AddProductFieldRequestUiVisibility;
- /**
- * Field description
- * @type {string}
- */
- 'description'?: string | null;
}