//#region src/model/SchemaAttributeReturned.d.ts /** * Enum SchemaAttributeReturned * @type {{ * "ALWAYS": "ALWAYS","DEFAULT": "DEFAULT","NEVER": "NEVER","REQUEST": "REQUEST", * }} */ declare const SchemaAttributeReturnedStatic: { "ALWAYS": "ALWAYS"; "DEFAULT": "DEFAULT"; "NEVER": "NEVER"; "REQUEST": "REQUEST"; }; /** * Enum class SchemaAttributeReturned. * @enum {} * @readonly */ declare class SchemaAttributeReturned { /** * Returns a SchemaAttributeReturned enum value from a Javascript object name. * @param {Object} data The plain JavaScript object containing the name of the enum value. * @return {module:model/SchemaAttributeReturned} The enum SchemaAttributeReturned value. */ static constructFromObject(object: any): any; /** * value: "ALWAYS" * @const */ ALWAYS: string; /** * value: "DEFAULT" * @const */ DEFAULT: string; /** * value: "NEVER" * @const */ NEVER: string; /** * value: "REQUEST" * @const */ REQUEST: string; } /** * * */ type SchemaAttributeReturned = any; //#endregion export { SchemaAttributeReturned, SchemaAttributeReturned as default, SchemaAttributeReturnedStatic };