ChemPare Documentation - v0.0.0
    Preparing search index...

    Interface ISupplier

    Interface defining the required properties for a supplier. This ensures all suppliers have the necessary readonly properties.

    interface ISupplier {
        supplierName: string;
        baseURL: string;
        shipping: ShippingRange;
        country: string;
        paymentMethods: PaymentMethod[];
    }

    Implemented by

    Index

    Properties

    supplierName: string

    The name of the supplier

    baseURL: string

    The base URL for the supplier

    shipping: ShippingRange

    The shipping scope of the supplier

    country: string

    The country code of the supplier

    paymentMethods: PaymentMethod[]

    The payment methods accepted by the supplier