File: //lib/mysqlsh/lib/python3.8/site-packages/oci/onesubscription/models/subscription_currency.py
# coding: utf-8
# Copyright (c) 2016, 2025, 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 SubscriptionCurrency(object):
"""
Currency details
"""
def __init__(self, **kwargs):
"""
Initializes a new SubscriptionCurrency object with values from keyword arguments.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param name:
The value to assign to the name property of this SubscriptionCurrency.
:type name: str
:param iso_code:
The value to assign to the iso_code property of this SubscriptionCurrency.
:type iso_code: str
:param std_precision:
The value to assign to the std_precision property of this SubscriptionCurrency.
:type std_precision: int
"""
self.swagger_types = {
'name': 'str',
'iso_code': 'str',
'std_precision': 'int'
}
self.attribute_map = {
'name': 'name',
'iso_code': 'isoCode',
'std_precision': 'stdPrecision'
}
self._name = None
self._iso_code = None
self._std_precision = None
@property
def name(self):
"""
Gets the name of this SubscriptionCurrency.
Currency name
:return: The name of this SubscriptionCurrency.
:rtype: str
"""
return self._name
@name.setter
def name(self, name):
"""
Sets the name of this SubscriptionCurrency.
Currency name
:param name: The name of this SubscriptionCurrency.
:type: str
"""
self._name = name
@property
def iso_code(self):
"""
**[Required]** Gets the iso_code of this SubscriptionCurrency.
Currency Code
:return: The iso_code of this SubscriptionCurrency.
:rtype: str
"""
return self._iso_code
@iso_code.setter
def iso_code(self, iso_code):
"""
Sets the iso_code of this SubscriptionCurrency.
Currency Code
:param iso_code: The iso_code of this SubscriptionCurrency.
:type: str
"""
self._iso_code = iso_code
@property
def std_precision(self):
"""
Gets the std_precision of this SubscriptionCurrency.
Standard Precision of the Currency
:return: The std_precision of this SubscriptionCurrency.
:rtype: int
"""
return self._std_precision
@std_precision.setter
def std_precision(self, std_precision):
"""
Sets the std_precision of this SubscriptionCurrency.
Standard Precision of the Currency
:param std_precision: The std_precision of this SubscriptionCurrency.
:type: int
"""
self._std_precision = std_precision
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