@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 1.76 kB
TypeScript
/**
* 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 V4TransactionsGetTransactionResponseDto
*/
export interface V4TransactionsGetTransactionResponseDto {
/**
* List of transactions retrieved from the database
* @type {Array<SoSTransactionEntityBase>}
* @memberof V4TransactionsGetTransactionResponseDto
*/
objects: Array<SoSTransactionEntityBase>;
/**
* Total count of transactions matching the query
* @type {number}
* @memberof V4TransactionsGetTransactionResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4TransactionsGetTransactionResponseDto interface.
*/
export declare function instanceOfV4TransactionsGetTransactionResponseDto(value: object): value is V4TransactionsGetTransactionResponseDto;
export declare function V4TransactionsGetTransactionResponseDtoFromJSON(json: any): V4TransactionsGetTransactionResponseDto;
export declare function V4TransactionsGetTransactionResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4TransactionsGetTransactionResponseDto;
export declare function V4TransactionsGetTransactionResponseDtoToJSON(json: any): V4TransactionsGetTransactionResponseDto;
export declare function V4TransactionsGetTransactionResponseDtoToJSONTyped(value?: V4TransactionsGetTransactionResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4TransactionsGetTransactionResponseDto.d.ts.map