class Azure::CostManagement::Mgmt::V2019_01_01::Models::ExportRecurrencePeriod
The start and end date for recurrence schedule.
Attributes
from[RW]
@return [DateTime] The start date of recurrence.
to[RW]
@return [DateTime] The end date of recurrence.
Public Class Methods
mapper()
click to toggle source
Mapper for ExportRecurrencePeriod
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-01-01/generated/azure_mgmt_cost_management/models/export_recurrence_period.rb, line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ExportRecurrencePeriod', type: { name: 'Composite', class_name: 'ExportRecurrencePeriod', model_properties: { from: { client_side_validation: true, required: true, serialized_name: 'from', type: { name: 'DateTime' } }, to: { client_side_validation: true, required: false, serialized_name: 'to', type: { name: 'DateTime' } } } } } end