UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.87 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. */ import type { SoSTransactionEntityBase } from './SoSTransactionEntityBase'; /** * * @export * @interface V4TransactionsGetTransactionsInViewResponseDto */ export interface V4TransactionsGetTransactionsInViewResponseDto { /** * List of transactions retrieved from the database * @type {Array<SoSTransactionEntityBase>} * @memberof V4TransactionsGetTransactionsInViewResponseDto */ objects: Array<SoSTransactionEntityBase>; /** * Total count of transactions matching the query * @type {number} * @memberof V4TransactionsGetTransactionsInViewResponseDto */ count: number; } /** * Check if a given object implements the V4TransactionsGetTransactionsInViewResponseDto interface. */ export declare function instanceOfV4TransactionsGetTransactionsInViewResponseDto(value: object): value is V4TransactionsGetTransactionsInViewResponseDto; export declare function V4TransactionsGetTransactionsInViewResponseDtoFromJSON(json: any): V4TransactionsGetTransactionsInViewResponseDto; export declare function V4TransactionsGetTransactionsInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4TransactionsGetTransactionsInViewResponseDto; export declare function V4TransactionsGetTransactionsInViewResponseDtoToJSON(json: any): V4TransactionsGetTransactionsInViewResponseDto; export declare function V4TransactionsGetTransactionsInViewResponseDtoToJSONTyped(value?: V4TransactionsGetTransactionsInViewResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4TransactionsGetTransactionsInViewResponseDto.d.ts.map