@apideck/node
Version:
Apideck Node.js SDK
47 lines (46 loc) • 1.28 kB
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { ResourceStatus } from './ResourceStatus';
/**
*
* @export
* @interface ApiResources
*/
export interface ApiResources {
/**
* ID of the resource, typically a lowercased version of its name.
* @type {string}
* @memberof ApiResources
*/
id?: string;
/**
* Name of the resource (plural)
* @type {string}
* @memberof ApiResources
*/
name?: string;
/**
*
* @type {ResourceStatus}
* @memberof ApiResources
*/
status?: ResourceStatus;
/**
* Exclude from mapping coverage
* @type {boolean}
* @memberof ApiResources
*/
excluded_from_coverage?: boolean;
}
export declare function ApiResourcesFromJSON(json: any): ApiResources;
export declare function ApiResourcesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiResources;
export declare function ApiResourcesToJSON(value?: ApiResources | null): any;