RackHD/on-web-ui

View on GitHub
src/app/models/sku.ts

Summary

Maintainability
A
0 mins
Test Coverage
/*
 This defines the data model of Node's SKU.
*/
export class SKU {
    id: string;
    name: string;
    discoveryGraphName: string;
    discoveryGraphOptions: {};
    rules: any;
    skuConfig: any;
}

export const SKU_URL = {
    getAllUrl: '/skus',
    getByIdentifierUrl: '/skus/',
    uploadUrl: '/skus/pack',
    uploadSuffix: '/pack',
}