/**
 * Link
 *
 * Details of a link to a related resource.
 */
export type Link = {
    /**
     * Specifies the relation to the current resource.
     */
    rel?: string;
    /**
     * URL for accessing the related resource.
     */
    href?: string;
    /**
     * Specifies the media type of the related resource.
     */
    type?: string;
    /**
     * Minimum allowed amount for the refund.
     */
    min_amount?: number;
    /**
     * Maximum allowed amount for the refund.
     */
    max_amount?: number;
};
//# sourceMappingURL=link.d.cts.map