import * as $dara from '@darabonba/typescript'; export declare class DeleteSourceLocationRequest extends $dara.Model { /** * @remarks * Specifies whether to use delete markers. * * @example * true */ softDelete?: boolean; /** * @remarks * The name of the source location. * * This parameter is required. * * @example * MySourceLocation */ sourceLocationName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }