/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * 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 ResourceParent */ export interface ResourceParent { /** * * @type {string} * @memberof ResourceParent */ 'id': string; /** * * @type {string} * @memberof ResourceParent */ 'name': string | null; } /** * Check if a given object implements the ResourceParent interface. */ export declare function instanceOfResourceParent(value: object): value is ResourceParent; export declare function ResourceParentFromJSON(json: any): ResourceParent; export declare function ResourceParentFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceParent; export declare function ResourceParentToJSON(json: any): ResourceParent; export declare function ResourceParentToJSONTyped(value?: ResourceParent | null, ignoreDiscriminator?: boolean): any;