/** * 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 UpdateResourceRequestLocationAnyOf1 */ export interface UpdateResourceRequestLocationAnyOf1 { /** * * @type {string} * @memberof UpdateResourceRequestLocationAnyOf1 */ 'sortKey'?: string; /** * * @type {string} * @memberof UpdateResourceRequestLocationAnyOf1 */ 'insertAfterId': string; } /** * Check if a given object implements the UpdateResourceRequestLocationAnyOf1 interface. */ export declare function instanceOfUpdateResourceRequestLocationAnyOf1(value: object): value is UpdateResourceRequestLocationAnyOf1; export declare function UpdateResourceRequestLocationAnyOf1FromJSON(json: any): UpdateResourceRequestLocationAnyOf1; export declare function UpdateResourceRequestLocationAnyOf1FromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateResourceRequestLocationAnyOf1; export declare function UpdateResourceRequestLocationAnyOf1ToJSON(json: any): UpdateResourceRequestLocationAnyOf1; export declare function UpdateResourceRequestLocationAnyOf1ToJSONTyped(value?: UpdateResourceRequestLocationAnyOf1 | null, ignoreDiscriminator?: boolean): any;