UNPKG

@sudowealth/schwab-api

Version:

TypeScript client for Charles Schwab API with OAuth support, market data, trading functionality, and complete type safety

10 lines (9 loc) 316 B
import { z } from 'zod'; import { ApiCurrencyType } from './api-currency-type.schema'; import { assetType } from './asset-type.schema'; export const AccountAPIOptionDeliverable = z.object({ symbol: z.string(), deliverableUnits: z.number(), apiCurrencyType: ApiCurrencyType, assetType: assetType, });