import type * as Square from "../index"; /** * Represents a [RetrieveLocationCustomAttribute](api-endpoint:LocationCustomAttributes-RetrieveLocationCustomAttribute) response. * Either `custom_attribute_definition` or `errors` is present in the response. */ export interface RetrieveLocationCustomAttributeResponse { /** * The retrieved custom attribute. If `with_definition` was set to `true` in the request, * the custom attribute definition is returned in the `definition` field. */ customAttribute?: Square.CustomAttribute; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }