/**
 * Represents a print location for products.
 */
interface PrintLocation {
    /**
     * The name of the print location.
     */
    Name: string;

    /**
     * The description of the print location.
     */
    Description: string;
}