/** * Shell Data & Reporting APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { nullable, number, object, optional, Schema, string, } from '../schema.js'; export interface FeeRuleProduct { /** Product Group Id */ productGroupId?: number | null; /** Product Group name */ productGroupName?: string | null; /** Client Product Code */ productCode?: string | null; /** Product Id */ productId?: number | null; /** Product name in English */ productName?: string | null; } export const feeRuleProductSchema: Schema = object({ productGroupId: ['ProductGroupId', optional(nullable(number()))], productGroupName: ['ProductGroupName', optional(nullable(string()))], productCode: ['ProductCode', optional(nullable(string()))], productId: ['ProductId', optional(nullable(number()))], productName: ['ProductName', optional(nullable(string()))], });