UNPKG

fitbit-api-client

Version:
35 lines 697 B
/** * 体重データのレスポンス */ export interface WeightResponse { /** * 体重のデータ一覧 */ weightLogs: WeightLog[]; } export declare function WeightResponseFromJson(offsetFromUTCMillis: number, json: unknown): WeightResponse; export interface WeightLog { /** * 記録時間 * @type {Date} */ dateTime: Date; /** * 体重 * @type {number} */ weight: number; /** * ログID(ユーザー内で一意) */ logId: bigint; /** * データソース */ source: 'API' | 'Aria' | 'AriaAir' | 'Withings'; /** * BMI */ bmi: number; } //# sourceMappingURL=weight.d.ts.map