import { Validator } from "./Validator"; /** * The response body that contains the default configuration information. * * {@link https://developer.apple.com/documentation/retentionmessaging/defaultconfigurationresponse DefaultConfigurationResponse} */ export interface DefaultConfigurationResponse { /** * The message identifier of the retention message you configured as a default. * * {@link https://developer.apple.com/documentation/retentionmessaging/messageidentifier messageIdentifier} **/ messageIdentifier: string; } export declare class DefaultConfigurationResponseValidator implements Validator { validate(obj: any): obj is DefaultConfigurationResponse; }