export declare class DayOfWeekRestriction { /** * Defines how the condition must be evaluated. */ "operation": string; /** * List of days of the week. Possible values: **monday**, **tuesday**, **wednesday**, **thursday**, **friday**, **saturday**, **sunday**. */ "value"?: Array; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare namespace DayOfWeekRestriction { enum ValueEnum { Friday = "friday", Monday = "monday", Saturday = "saturday", Sunday = "sunday", Thursday = "thursday", Tuesday = "tuesday", Wednesday = "wednesday" } }