@apihawk/billia-sdk
Version:
The ApiHawk Billia SDK
41 lines • 1.06 kB
TypeScript
export interface IChangePasswordBody {
current_password: string;
new_password: string;
}
export interface IChangePasswordResponse {
type: 'http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html';
title: 'OK';
status: 200;
detail: 'Password updated successfully.';
}
export interface IUserSettingResponse {
name: string;
value: string;
user_id: string;
}
export interface IUserResponse {
id: string;
status: string;
username: string;
reseller: string;
first_name: string;
last_name: string;
developer: string;
role: string;
date_registered: string;
onhold: string;
enable_special_payments: string;
activation_token: string;
at_expire: string;
reset_password_token?: any;
rpt_expire?: any;
email_inactive_order_approved: string;
old_billing_id?: any;
account_manager_id: string;
encryption_key: string;
support_pin: string;
}
export interface IChangeSupportPinResponse {
support_pin: string;
}
//# sourceMappingURL=billia-sdk-user.types.d.ts.map