/** * Shell Data & Reporting APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { lazy, number, object, optional, Schema } from '../schema.js'; import { SearchSOAReq, searchSOAReqSchema } from './searchSOAReq.js'; export interface SearchStatementOfAccountRequest { filters?: SearchSOAReq; /** Page number */ page?: number; /** Number of records in page */ pageSize?: number; } export const searchStatementOfAccountRequestSchema: Schema = lazy( () => object({ filters: ['Filters', optional(searchSOAReqSchema)], page: ['Page', optional(number())], pageSize: ['PageSize', optional(number())], }) );