package eform import "encoding/xml" // ===================================================== // TENDERING PROCESS // ===================================================== // TenderingProcess represents the tendering process type TenderingProcess struct { XMLName xml.Name `xml:"TenderingProcess"` ProcedureCode string `xml:"ProcedureCode"` ProcessJustification ProcessJustification `xml:"ProcessJustification,omitempty"` TenderSubmissionDeadlinePeriod TenderSubmissionDeadlinePeriod `xml:"TenderSubmissionDeadlinePeriod,omitempty"` } // ProcessJustification represents process justification type ProcessJustification struct { XMLName xml.Name `xml:"ProcessJustification"` ProcessReasonCode string `xml:"ProcessReasonCode"` } // TenderSubmissionDeadlinePeriod represents the deadline for tender submission type TenderSubmissionDeadlinePeriod struct { XMLName xml.Name `xml:"TenderSubmissionDeadlinePeriod"` EndDate string `xml:"EndDate"` EndTime string `xml:"EndTime,omitempty"` }