fitbit-api-client
Version:
## ⚠️ This SDK is not ready for production
35 lines • 697 B
TypeScript
/**
* 体重データのレスポンス
*/
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