UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

47 lines 1.4 kB
/** * API v4 * Swagger documentation for API v4 * * The version of the OpenAPI document: 4.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 SoSViewEntityDataSort */ export interface SoSViewEntityDataSort { /** * * @type {string} * @memberof SoSViewEntityDataSort */ columnName: string; /** * * @type {string} * @memberof SoSViewEntityDataSort */ direction: SoSViewEntityDataSortDirection; } /** * @export * @enum {string} */ export declare enum SoSViewEntityDataSortDirection { Asc = "asc", Desc = "desc" } /** * Check if a given object implements the SoSViewEntityDataSort interface. */ export declare function instanceOfSoSViewEntityDataSort(value: object): value is SoSViewEntityDataSort; export declare function SoSViewEntityDataSortFromJSON(json: any): SoSViewEntityDataSort; export declare function SoSViewEntityDataSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): SoSViewEntityDataSort; export declare function SoSViewEntityDataSortToJSON(json: any): SoSViewEntityDataSort; export declare function SoSViewEntityDataSortToJSONTyped(value?: SoSViewEntityDataSort | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SoSViewEntityDataSort.d.ts.map