fitbit-api-client
Version:
## ⚠️ This SDK is not ready for production
13 lines • 511 B
TypeScript
import { BaseApi, TokenRequestOptions } from './base.api';
import { ProfileResponse } from '../models/profile';
export declare class ProfileApi extends BaseApi {
scope: "profile";
/**
* プロフィール取得API
* https://dev.fitbit.com/build/reference/web-api/user/get-profile/
* @param options
*/
getProfile(options: TokenRequestOptions): Promise<ProfileResponse>;
getProfileRaw(options: TokenRequestOptions): Promise<unknown>;
}
//# sourceMappingURL=profile.api.d.ts.map