/** * 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 UpdateResourceRequestLocation */ export interface UpdateResourceRequestLocation { /** * * @type {string} * @memberof UpdateResourceRequestLocation */ 'sortKey'?: string; /** * * @type {string} * @memberof UpdateResourceRequestLocation */ 'insertBeforeId': string; /** * * @type {string} * @memberof UpdateResourceRequestLocation */ 'insertAfterId': string; } /** * Check if a given object implements the UpdateResourceRequestLocation interface. */ export declare function instanceOfUpdateResourceRequestLocation(value: object): value is UpdateResourceRequestLocation; export declare function UpdateResourceRequestLocationFromJSON(json: any): UpdateResourceRequestLocation; export declare function UpdateResourceRequestLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateResourceRequestLocation; export declare function UpdateResourceRequestLocationToJSON(json: any): UpdateResourceRequestLocation; export declare function UpdateResourceRequestLocationToJSONTyped(value?: UpdateResourceRequestLocation | null, ignoreDiscriminator?: boolean): any;