/* tslint:disable */ /* eslint-disable */ /** * TwitchGameApi * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { UserModel } from './user-model'; /** * * @export * @interface ShopItemModel */ export interface ShopItemModel { /** * * @type {Date} * @memberof ShopItemModel */ createdDate?: Date; /** * * @type {Date} * @memberof ShopItemModel */ updatedDate?: Date; /** * * @type {number} * @memberof ShopItemModel */ id?: number; /** * * @type {string} * @memberof ShopItemModel */ name?: string | null; /** * * @type {string} * @memberof ShopItemModel */ type?: string | null; /** * * @type {string} * @memberof ShopItemModel */ subType?: string | null; /** * * @type {string} * @memberof ShopItemModel */ description?: string | null; /** * * @type {number} * @memberof ShopItemModel */ cost?: number; /** * * @type {boolean} * @memberof ShopItemModel */ isActive?: boolean; /** * * @type {string} * @memberof ShopItemModel */ iconPath?: string | null; /** * * @type {number} * @memberof ShopItemModel */ stock?: number; /** * * @type {string} * @memberof ShopItemModel */ announceChannels?: string | null; /** * * @type {string} * @memberof ShopItemModel */ announceMessage?: string | null; /** * * @type {string} * @memberof ShopItemModel */ requiredCards?: string | null; /** * * @type {number} * @memberof ShopItemModel */ streamerId?: number | null; /** * * @type {UserModel} * @memberof ShopItemModel */ streamer?: UserModel; }