/**
 * Shell Card Management APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */

import { number, object, Schema, string } from '../schema.js';

/** Product restriction */
export interface CardDetailsResponseFuelSetsItems {
  /** product restriction identifier */
  productRestrictionId: number;
  /** product set description. */
  description: string;
}

export const cardDetailsResponseFuelSetsItemsSchema: Schema<CardDetailsResponseFuelSetsItems> = object(
  {
    productRestrictionId: ['ProductRestrictionId', number()],
    description: ['Description', string()],
  }
);
