import * as $dara from '@darabonba/typescript'; export declare class SetResellerUserStatusRequest extends $dara.Model { /** * @remarks * The type of the business. Valid values: FREEZE: the frozen business of the account. TRUSTEESHIP: the hosted business of the account. * * This parameter is required. * * @example * FREEZE */ businessType?: string; /** * @remarks * This parameter is required. */ ownerId?: string; /** * @remarks * The account status that you want to set. Valid values: Freeze: The account is frozen. Thaw: The account is unfrozen. Trusteeship: The account is hosted. TrusteeshipCancel: The account is not hosted. * * This parameter is required. * * @example * Freeze */ status?: string; /** * @remarks * 停机模式 * 取值: * 0:普通停机 * 1:立即停机 * * @example * 0 */ stopMode?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }