import type * as Square from "../index"; /** * Published when a customer [custom attribute definition](entity:CustomAttributeDefinition) * is created by the subscribing application. * * This event is replaced by * [customer.custom_attribute_definition.owned.created](webhook:customer.custom_attribute_definition.owned.created). */ export interface CustomerCustomAttributeDefinitionCreatedEvent { /** The ID of the seller associated with the event that triggered the event notification. */ merchantId?: string | null; /** The type of this event. The value is `"customer.custom_attribute_definition.created"`. */ type?: string | null; /** A unique ID for the event notification. */ eventId?: string | null; /** The timestamp that indicates when the event notification was created, in RFC 3339 format. */ createdAt?: string; /** The data associated with the event that triggered the event notification. */ data?: Square.CustomAttributeDefinitionEventData; }