import type * as Square from "../index"; /** * Represents an object in the CustomAttributeDefinition event notification * payload that contains the affected custom attribute definition. */ export interface CustomAttributeDefinitionEventData { /** The type of the event data object. The value is `"custom_attribute_definition"`. */ type?: string | null; /** The ID of the event data object. */ id?: string; /** An object containing the custom attribute definition. */ object?: Square.CustomAttributeDefinitionEventDataObject; }