Server IP : 103.119.228.120 / Your IP : 3.22.70.169 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/usage/models/ |
Upload File : |
# coding: utf-8 # Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 from oci.decorators import init_model_state_from_kwargs @init_model_state_from_kwargs class MonthlyRewardSummary(object): """ Object describing the monthly rewards summary for the requested subscription ID. """ def __init__(self, **kwargs): """ Initializes a new MonthlyRewardSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param available_rewards: The value to assign to the available_rewards property of this MonthlyRewardSummary. :type available_rewards: float :param redeemed_rewards: The value to assign to the redeemed_rewards property of this MonthlyRewardSummary. :type redeemed_rewards: float :param earned_rewards: The value to assign to the earned_rewards property of this MonthlyRewardSummary. :type earned_rewards: float :param is_manual: The value to assign to the is_manual property of this MonthlyRewardSummary. :type is_manual: bool :param time_rewards_expired: The value to assign to the time_rewards_expired property of this MonthlyRewardSummary. :type time_rewards_expired: datetime :param time_rewards_earned: The value to assign to the time_rewards_earned property of this MonthlyRewardSummary. :type time_rewards_earned: datetime :param time_usage_started: The value to assign to the time_usage_started property of this MonthlyRewardSummary. :type time_usage_started: datetime :param time_usage_ended: The value to assign to the time_usage_ended property of this MonthlyRewardSummary. :type time_usage_ended: datetime :param usage_amount: The value to assign to the usage_amount property of this MonthlyRewardSummary. :type usage_amount: float :param eligible_usage_amount: The value to assign to the eligible_usage_amount property of this MonthlyRewardSummary. :type eligible_usage_amount: float :param ineligible_usage_amount: The value to assign to the ineligible_usage_amount property of this MonthlyRewardSummary. :type ineligible_usage_amount: float :param usage_period_key: The value to assign to the usage_period_key property of this MonthlyRewardSummary. :type usage_period_key: str """ self.swagger_types = { 'available_rewards': 'float', 'redeemed_rewards': 'float', 'earned_rewards': 'float', 'is_manual': 'bool', 'time_rewards_expired': 'datetime', 'time_rewards_earned': 'datetime', 'time_usage_started': 'datetime', 'time_usage_ended': 'datetime', 'usage_amount': 'float', 'eligible_usage_amount': 'float', 'ineligible_usage_amount': 'float', 'usage_period_key': 'str' } self.attribute_map = { 'available_rewards': 'availableRewards', 'redeemed_rewards': 'redeemedRewards', 'earned_rewards': 'earnedRewards', 'is_manual': 'isManual', 'time_rewards_expired': 'timeRewardsExpired', 'time_rewards_earned': 'timeRewardsEarned', 'time_usage_started': 'timeUsageStarted', 'time_usage_ended': 'timeUsageEnded', 'usage_amount': 'usageAmount', 'eligible_usage_amount': 'eligibleUsageAmount', 'ineligible_usage_amount': 'ineligibleUsageAmount', 'usage_period_key': 'usagePeriodKey' } self._available_rewards = None self._redeemed_rewards = None self._earned_rewards = None self._is_manual = None self._time_rewards_expired = None self._time_rewards_earned = None self._time_usage_started = None self._time_usage_ended = None self._usage_amount = None self._eligible_usage_amount = None self._ineligible_usage_amount = None self._usage_period_key = None @property def available_rewards(self): """ Gets the available_rewards of this MonthlyRewardSummary. The number of rewards available for a specific usage period. :return: The available_rewards of this MonthlyRewardSummary. :rtype: float """ return self._available_rewards @available_rewards.setter def available_rewards(self, available_rewards): """ Sets the available_rewards of this MonthlyRewardSummary. The number of rewards available for a specific usage period. :param available_rewards: The available_rewards of this MonthlyRewardSummary. :type: float """ self._available_rewards = available_rewards @property def redeemed_rewards(self): """ Gets the redeemed_rewards of this MonthlyRewardSummary. The number of rewards redeemed for a specific month. :return: The redeemed_rewards of this MonthlyRewardSummary. :rtype: float """ return self._redeemed_rewards @redeemed_rewards.setter def redeemed_rewards(self, redeemed_rewards): """ Sets the redeemed_rewards of this MonthlyRewardSummary. The number of rewards redeemed for a specific month. :param redeemed_rewards: The redeemed_rewards of this MonthlyRewardSummary. :type: float """ self._redeemed_rewards = redeemed_rewards @property def earned_rewards(self): """ Gets the earned_rewards of this MonthlyRewardSummary. The number of rewards earned for the specific usage period. :return: The earned_rewards of this MonthlyRewardSummary. :rtype: float """ return self._earned_rewards @earned_rewards.setter def earned_rewards(self, earned_rewards): """ Sets the earned_rewards of this MonthlyRewardSummary. The number of rewards earned for the specific usage period. :param earned_rewards: The earned_rewards of this MonthlyRewardSummary. :type: float """ self._earned_rewards = earned_rewards @property def is_manual(self): """ Gets the is_manual of this MonthlyRewardSummary. The boolean parameter to indicate whether or not the available rewards are manually posted. :return: The is_manual of this MonthlyRewardSummary. :rtype: bool """ return self._is_manual @is_manual.setter def is_manual(self, is_manual): """ Sets the is_manual of this MonthlyRewardSummary. The boolean parameter to indicate whether or not the available rewards are manually posted. :param is_manual: The is_manual of this MonthlyRewardSummary. :type: bool """ self._is_manual = is_manual @property def time_rewards_expired(self): """ Gets the time_rewards_expired of this MonthlyRewardSummary. The date and time when rewards expire. :return: The time_rewards_expired of this MonthlyRewardSummary. :rtype: datetime """ return self._time_rewards_expired @time_rewards_expired.setter def time_rewards_expired(self, time_rewards_expired): """ Sets the time_rewards_expired of this MonthlyRewardSummary. The date and time when rewards expire. :param time_rewards_expired: The time_rewards_expired of this MonthlyRewardSummary. :type: datetime """ self._time_rewards_expired = time_rewards_expired @property def time_rewards_earned(self): """ Gets the time_rewards_earned of this MonthlyRewardSummary. The date and time when rewards accrue. :return: The time_rewards_earned of this MonthlyRewardSummary. :rtype: datetime """ return self._time_rewards_earned @time_rewards_earned.setter def time_rewards_earned(self, time_rewards_earned): """ Sets the time_rewards_earned of this MonthlyRewardSummary. The date and time when rewards accrue. :param time_rewards_earned: The time_rewards_earned of this MonthlyRewardSummary. :type: datetime """ self._time_rewards_earned = time_rewards_earned @property def time_usage_started(self): """ Gets the time_usage_started of this MonthlyRewardSummary. The start date and time for the usage period. :return: The time_usage_started of this MonthlyRewardSummary. :rtype: datetime """ return self._time_usage_started @time_usage_started.setter def time_usage_started(self, time_usage_started): """ Sets the time_usage_started of this MonthlyRewardSummary. The start date and time for the usage period. :param time_usage_started: The time_usage_started of this MonthlyRewardSummary. :type: datetime """ self._time_usage_started = time_usage_started @property def time_usage_ended(self): """ Gets the time_usage_ended of this MonthlyRewardSummary. The end date and time for the usage period. :return: The time_usage_ended of this MonthlyRewardSummary. :rtype: datetime """ return self._time_usage_ended @time_usage_ended.setter def time_usage_ended(self, time_usage_ended): """ Sets the time_usage_ended of this MonthlyRewardSummary. The end date and time for the usage period. :param time_usage_ended: The time_usage_ended of this MonthlyRewardSummary. :type: datetime """ self._time_usage_ended = time_usage_ended @property def usage_amount(self): """ Gets the usage_amount of this MonthlyRewardSummary. The usage amount for the usage period. :return: The usage_amount of this MonthlyRewardSummary. :rtype: float """ return self._usage_amount @usage_amount.setter def usage_amount(self, usage_amount): """ Sets the usage_amount of this MonthlyRewardSummary. The usage amount for the usage period. :param usage_amount: The usage_amount of this MonthlyRewardSummary. :type: float """ self._usage_amount = usage_amount @property def eligible_usage_amount(self): """ Gets the eligible_usage_amount of this MonthlyRewardSummary. The eligible usage amount for the usage period. :return: The eligible_usage_amount of this MonthlyRewardSummary. :rtype: float """ return self._eligible_usage_amount @eligible_usage_amount.setter def eligible_usage_amount(self, eligible_usage_amount): """ Sets the eligible_usage_amount of this MonthlyRewardSummary. The eligible usage amount for the usage period. :param eligible_usage_amount: The eligible_usage_amount of this MonthlyRewardSummary. :type: float """ self._eligible_usage_amount = eligible_usage_amount @property def ineligible_usage_amount(self): """ Gets the ineligible_usage_amount of this MonthlyRewardSummary. The ineligible usage amount for the usage period. :return: The ineligible_usage_amount of this MonthlyRewardSummary. :rtype: float """ return self._ineligible_usage_amount @ineligible_usage_amount.setter def ineligible_usage_amount(self, ineligible_usage_amount): """ Sets the ineligible_usage_amount of this MonthlyRewardSummary. The ineligible usage amount for the usage period. :param ineligible_usage_amount: The ineligible_usage_amount of this MonthlyRewardSummary. :type: float """ self._ineligible_usage_amount = ineligible_usage_amount @property def usage_period_key(self): """ Gets the usage_period_key of this MonthlyRewardSummary. The usage period ID. :return: The usage_period_key of this MonthlyRewardSummary. :rtype: str """ return self._usage_period_key @usage_period_key.setter def usage_period_key(self, usage_period_key): """ Sets the usage_period_key of this MonthlyRewardSummary. The usage period ID. :param usage_period_key: The usage_period_key of this MonthlyRewardSummary. :type: str """ self._usage_period_key = usage_period_key def __repr__(self): return formatted_flat_dict(self) def __eq__(self, other): if other is None: return False return self.__dict__ == other.__dict__ def __ne__(self, other): return not self == other