import * as $dara from '@darabonba/typescript'; export declare class CreateActivationResponseBody extends $dara.Model { /** * @remarks * The value of the activation code. The value is returned only once after the CreateActivation operation is called and cannot be queried afterward. Properly save the return value. * * @example * a-hz0ch3SwhOlE1234+Xo32lAZC**** */ activationCode?: string; /** * @remarks * The ID of the activation code. * * @example * 4ECEEE12-56F1-4FBC-9AB1-890F1234**** */ activationId?: string; /** * @remarks * The ID of the request. * * @example * 4ECEEE12-56F1-4FBC-9AB1-890F1234**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }