export interface CampaignValidationResult { /** List of validation errors. */ errors: CampaignValidationResult.Errors.Item[]; /** Whether the campaign is valid or not. */ is_valid: boolean; } export declare namespace CampaignValidationResult { type Errors = Errors.Item[]; namespace Errors { interface Item { /** A human-readable description of the error. */ description: string; /** An example of a valid value for the field. */ example?: string; /** The field that is not valid. */ field: string; } } }