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