org_isda_cdm.PayRelativeToEnum.PayRelativeToEnum.go Maven / Gradle / Ivy
/**
* This file is auto-generated from the ISDA Common Domain Model, do not edit.
* Version: 5.0.1
*/
package PayRelativeToEnum
import . "org_isda_cdm"
/**
* The enumerated values to specify whether payments occur relative to the calculation period start date or end date, each reset date, valuation date or the last pricing date.
*/
const (
/**
* Payments will occur relative to the last day of each calculation period.
*/
CALCULATION_PERIOD_END_DATE PayRelativeToEnum = iota + 1
/**
* Payments will occur relative to the first day of each calculation period.
*/
CALCULATION_PERIOD_START_DATE PayRelativeToEnum = iota + 1
/**
* Payments will occur relative to the last Pricing Date of each Calculation Period.
*/
LAST_PRICING_DATE PayRelativeToEnum = iota + 1
/**
* Payments will occur relative to the reset date.
*/
RESET_DATE PayRelativeToEnum = iota + 1
/**
* Payments will occur relative to the valuation date.
*/
VALUATION_DATE PayRelativeToEnum = iota + 1
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy