UNPKG

@apideck/node

Version:
34 lines (33 loc) 1.12 kB
/** * 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. */ /** * * @export * @interface ApiResourceLinkedResources */ export interface ApiResourceLinkedResources { /** * ID of the resource, typically a lowercased version of name. * @type {string} * @memberof ApiResourceLinkedResources */ id?: string; /** * Name of the property in our Unified API. * @type {string} * @memberof ApiResourceLinkedResources */ unified_property?: string; } export declare function ApiResourceLinkedResourcesFromJSON(json: any): ApiResourceLinkedResources; export declare function ApiResourceLinkedResourcesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiResourceLinkedResources; export declare function ApiResourceLinkedResourcesToJSON(value?: ApiResourceLinkedResources | null): any;