import type * as Square from "../index"; /** * Represents a response from creating an order custom attribute definition. */ export interface CreateOrderCustomAttributeDefinitionResponse { /** The new custom attribute definition. */ customAttributeDefinition?: Square.CustomAttributeDefinition; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }