# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
[docs]class OfferTermInfo(Model):
"""Describes the offer term.
:param effective_date: Indicates the date from which the meter rate or
offer term is effective.
:type effective_date: datetime
:param excluded_meter_ids: An array of meter ids that are excluded from
the given offer terms.
:type excluded_meter_ids: list of str
:param Name: Polymorphic Discriminator
:type Name: str
"""
_validation = {
'Name': {'required': True},
}
_attribute_map = {
'effective_date': {'key': 'EffectiveDate', 'type': 'iso-8601'},
'excluded_meter_ids': {'key': 'ExcludedMeterIds', 'type': '[str]'},
'Name': {'key': 'Name', 'type': 'str'},
}
_subtype_map = {
'Name': {'Monetary Credit': 'MonetaryCredit', 'Monetary Commitment': 'MonetaryCommitment', 'Recurring Charge': 'RecurringCharge'}
}
def __init__(self, effective_date=None, excluded_meter_ids=None):
self.effective_date = effective_date
self.excluded_meter_ids = excluded_meter_ids
self.Name = None