/** * 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 UpdateResourceRequestLocationAnyOf */ export interface UpdateResourceRequestLocationAnyOf { /** * * @type {string} * @memberof UpdateResourceRequestLocationAnyOf */ 'sortKey'?: string; /** * * @type {string} * @memberof UpdateResourceRequestLocationAnyOf */ 'insertBeforeId': string; } /** * Check if a given object implements the UpdateResourceRequestLocationAnyOf interface. */ export declare function instanceOfUpdateResourceRequestLocationAnyOf(value: object): value is UpdateResourceRequestLocationAnyOf; export declare function UpdateResourceRequestLocationAnyOfFromJSON(json: any): UpdateResourceRequestLocationAnyOf; export declare function UpdateResourceRequestLocationAnyOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateResourceRequestLocationAnyOf; export declare function UpdateResourceRequestLocationAnyOfToJSON(json: any): UpdateResourceRequestLocationAnyOf; export declare function UpdateResourceRequestLocationAnyOfToJSONTyped(value?: UpdateResourceRequestLocationAnyOf | null, ignoreDiscriminator?: boolean): any;