@lomi./sdk
Version:
Official TypeScript SDK for the lomi. API
44 lines • 1.31 kB
TypeScript
import type { spi_account_aliases } from '../models/spi_account_aliases.js';
import type { CancelablePromise } from '../core/CancelablePromise.js';
export declare class SpiAccountAliaseService {
/**
* List spi_account_aliases
* Retrieve a paginated list of spi_account_aliases
* @returns any Successful response
* @throws ApiError
*/
static getSpiAccountAliases({ limit, offset, sort, }: {
/**
* Maximum number of items to return
*/
limit?: number;
/**
* Number of items to skip
*/
offset?: number;
/**
* Sort order (e.g., created_at:desc)
*/
sort?: string;
}): CancelablePromise<{
data?: Array<spi_account_aliases>;
pagination?: {
limit?: number;
offset?: number;
total?: number;
};
}>;
/**
* Get spi_account_aliase
* Retrieve a specific spi_account_aliase by ID
* @returns spi_account_aliases Successful response
* @throws ApiError
*/
static getSpiAccountAliases1({ aliasId, }: {
/**
* The spi_account_aliase ID
*/
aliasId: string;
}): CancelablePromise<spi_account_aliases>;
}
//# sourceMappingURL=SpiAccountAliaseService.d.ts.map