ruạṛ
a ���f � @ s8 d dl mZmZmZ d dlmZ eG dd� de��ZdS )� )�formatted_flat_dict� NONE_SENTINEL�#value_allowed_none_or_none_sentinel)�init_model_state_from_kwargsc @ s� e Zd ZdZdZdZdZdZdZdZ dZ dZdZdZ dZdd � Zed d� �Zedd � �Zejdd � �Zedd� �Zejdd� �Zdd� Zdd� Zdd� ZdS )�AbstractFrequencyDetailsz5 The model that holds the frequency details. �HOURLY�DAILY�MONTHLY�WEEKLY�MONTHLY_RULE�CUSTOMc K s( ddd�| _ ddd�| _d| _d| _dS )a% Initializes a new AbstractFrequencyDetails object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class: * :class:`~oci.data_integration.models.MonthlyFrequencyDetails` * :class:`~oci.data_integration.models.CustomFrequencyDetails` * :class:`~oci.data_integration.models.DailyFrequencyDetails` * :class:`~oci.data_integration.models.WeeklyFrequencyDetails` * :class:`~oci.data_integration.models.MonthlyRuleFrequencyDetails` * :class:`~oci.data_integration.models.HourlyFrequencyDetails` The following keyword arguments are supported (corresponding to the getters/setters of this class): :param model_type: The value to assign to the model_type property of this AbstractFrequencyDetails. Allowed values for this property are: "HOURLY", "DAILY", "MONTHLY", "WEEKLY", "MONTHLY_RULE", "CUSTOM", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type model_type: str :param frequency: The value to assign to the frequency property of this AbstractFrequencyDetails. Allowed values for this property are: "HOURLY", "DAILY", "MONTHLY", "WEEKLY", "CUSTOM", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type frequency: str �str)� model_type� frequency� modelTyper N)Z swagger_typesZ attribute_map�_model_type� _frequency)�self�kwargs� r �Z/usr/lib/python3.9/site-packages/oci/data_integration/models/abstract_frequency_details.py�__init__>