@sudowealth/schwab-api
Version:
TypeScript client for Charles Schwab API with OAuth support, market data, trading functionality, and complete type safety
11 lines (10 loc) • 392 B
JavaScript
import { TRADER } from '../../constants';
import { ErrorResponseSchema } from '../../errors';
import { GetUserPreferenceResponse } from './schema';
export const getUserPreferenceMeta = {
method: 'GET',
path: TRADER.USER_PREFERENCES.GET_USER_PREFERENCES,
responseSchema: GetUserPreferenceResponse,
errorSchema: ErrorResponseSchema,
description: 'Get user preferences.',
};