@oystehr/sdk
Version:
Oystehr SDK
12 lines (11 loc) • 456 B
TypeScript
import { OystehrClientRequest, VersionGetResponse } from '../..';
import { SDKResource } from '../../client/client';
import { OystehrConfig } from '../../config';
export declare class Version extends SDKResource {
#private;
constructor(config: OystehrConfig);
/**
* Get project API version. This endpoint is public so there are no access policy requirements.
*/
get(request?: OystehrClientRequest): Promise<VersionGetResponse>;
}