import { Quantity } from './Quantity';
import { Price } from '../../order/Price';
/** RetrievalFees */
export interface RetrievalFees {
    /** Total retrieval fees in GiB */
    quantity: Quantity;
    /** List of resource IDs */
    resourceIds: string[];
    /** Total price */
    totalPrice: Price;
}
//# sourceMappingURL=RetrievalFees.d.ts.map