Skip to main content
Module

x/windmill/windmill-api/models/InlineResponse2002Asks.ts

Windmill deno client (separated from the main repo because most of the code is auto-generated from the openapi and not worth committing)
Go to Latest
File
/** * Windmill server API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 1.28.1 * Contact: contact@windmill.dev * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */
import { HttpFile } from '../http/http.ts';
export class InlineResponse2002Asks { 'id': number; 'askId': number; 'summary': string; 'app': string; 'approved': boolean; 'isTrigger': boolean; 'votes': number; 'views': number;
static readonly discriminator: string | undefined = undefined;
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "id", "baseName": "id", "type": "number", "format": "" }, { "name": "askId", "baseName": "ask_id", "type": "number", "format": "" }, { "name": "summary", "baseName": "summary", "type": "string", "format": "" }, { "name": "app", "baseName": "app", "type": "string", "format": "" }, { "name": "approved", "baseName": "approved", "type": "boolean", "format": "" }, { "name": "isTrigger", "baseName": "is_trigger", "type": "boolean", "format": "" }, { "name": "votes", "baseName": "votes", "type": "number", "format": "" }, { "name": "views", "baseName": "views", "type": "number", "format": "" } ];
static getAttributeTypeMap() { return InlineResponse2002Asks.attributeTypeMap; }
public constructor() { }}