import * as $dara from '@darabonba/typescript'; export declare class AddYikeUserCreditRequest extends $dara.Model { /** * @remarks * The number of credits to add. The value must be greater than 0. * * This parameter is required. * * @example * 50 */ credit?: number; /** * @remarks * The user ID of the sub-account. * * This parameter is required. * * @example * id */ yikeUserId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }