import type * as Square from "../index"; /** * Represents a [RetrieveMerchantCustomAttributeDefinition](api-endpoint:MerchantCustomAttributes-RetrieveMerchantCustomAttributeDefinition) response. * Either `custom_attribute_definition` or `errors` is present in the response. */ export interface RetrieveMerchantCustomAttributeDefinitionResponse { /** The retrieved custom attribute definition. */ customAttributeDefinition?: Square.CustomAttributeDefinition; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }