UNPKG

card-management-sdk

Version:

The Shell Card Management API is REST-based and employs OAUTH 2.0,Basic and ApiKey authentication. The API endpoints accept JSON-encoded request bodies, return JSON-encoded responses and use standard HTTP response codes. All resources are located in the S

32 lines (31 loc) 926 B
/** * Shell Card Management APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { ProductAllOf0 } from './productAllOf0'; export interface ProductGroup { /** * Referenced Purchase Category Id * Example: 123, 124 */ referenceId?: number; /** Product group ID */ productGroupId?: string; /** Product group name */ name?: string; /** * Indicates whether this is a default Product Group at ColCo level or not. * Note: The Customer level default settings are not considered here. */ isDefault?: boolean; /** * Identifies the type of Product group. * true - if it is a Fuel type Product group * false - if it is Non-Fuel type */ isFuelType?: boolean; products?: ProductAllOf0[]; } export declare const productGroupSchema: Schema<ProductGroup>;