@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) • 401 B
JavaScript
import { TRADER } from '../../constants.js';
import { ErrorResponseSchema } from '../../errors.js';
import { GetUserPreferenceResponse } from './schema.js';
export const getUserPreferenceMeta = {
method: 'GET',
path: TRADER.USER_PREFERENCES.GET_USER_PREFERENCES,
responseSchema: GetUserPreferenceResponse,
errorSchema: ErrorResponseSchema,
description: 'Get user preferences.',
};