Mayson Monorepo Documentation
    Preparing search index...
    interface Shipping {
        amount: number;
        from_postal_code: string;
        to_postal_code: string;
    }
    Index

    Properties

    amount: number

    If a physical good is being shipped, the cost of shipping represented in the smallest currency unit. An integer greater than or equal to 0.

    from_postal_code: string

    If a physical good is being shipped, the postal code of where it is being shipped from. At most 10 alphanumeric characters long, hyphens are allowed.

    to_postal_code: string

    If a physical good is being shipped, the postal code of where it is being shipped to. At most 10 alphanumeric characters long, hyphens are allowed.