Portal

<back to all web services

BrowseTenderAnnouncement

The following routes are available for this service:
GET/tender/{tenderid}/announcement
import java.math.*;
import java.util.*;
import net.servicestack.client.*;

public class dtos
{

    public static class BrowseTenderAnnouncement implements IGet
    {
        public Integer TenderId = null;
        
        public Integer getTenderId() { return TenderId; }
        public BrowseTenderAnnouncement setTenderId(Integer value) { this.TenderId = value; return this; }
    }

    public static class BrowseTenderAnnouncementResponse extends ResponseBase
    {
        public TenderAnnouncementDetails Tender = null;
        
        public TenderAnnouncementDetails getTender() { return Tender; }
        public BrowseTenderAnnouncementResponse setTender(TenderAnnouncementDetails value) { this.Tender = value; return this; }
    }

    public static class ResponseBase
    {
        public ResponseStatus ResponseStatus = null;
        
        public ResponseStatus getResponseStatus() { return ResponseStatus; }
        public ResponseBase setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
    }

    public static class TenderAnnouncementDetails extends TenderAnnouncement
    {
        public ArrayList<TenderFileDetails> TenderFiles = null;
        public ArrayList<TenderRoundSimple> TenderRounds = null;
        
        public ArrayList<TenderFileDetails> getTenderFiles() { return TenderFiles; }
        public TenderAnnouncementDetails setTenderFiles(ArrayList<TenderFileDetails> value) { this.TenderFiles = value; return this; }
        public ArrayList<TenderRoundSimple> getTenderRounds() { return TenderRounds; }
        public TenderAnnouncementDetails setTenderRounds(ArrayList<TenderRoundSimple> value) { this.TenderRounds = value; return this; }
    }

    public static class TenderAnnouncement
    {
        public Integer TenderId = null;
        public String TenderIdentifier = null;
        public ProcedureType ProcedureType = null;
        public String Subject = null;
        public Date SubmissionDeadline = null;
        public TenderType TenderType = null;
        public TenderStatus TenderStatus = null;
        public Boolean IsUnderPublish = null;
        public Date PublishStartDateTime = null;
        public Date PublishEndDateTime = null;
        public Integer PublishedById = null;
        public Boolean IsProcurementEnabled = null;
        public Boolean IsComplianceEnabled = null;
        
        public Integer getTenderId() { return TenderId; }
        public TenderAnnouncement setTenderId(Integer value) { this.TenderId = value; return this; }
        public String getTenderIdentifier() { return TenderIdentifier; }
        public TenderAnnouncement setTenderIdentifier(String value) { this.TenderIdentifier = value; return this; }
        public ProcedureType getProcedureType() { return ProcedureType; }
        public TenderAnnouncement setProcedureType(ProcedureType value) { this.ProcedureType = value; return this; }
        public String getSubject() { return Subject; }
        public TenderAnnouncement setSubject(String value) { this.Subject = value; return this; }
        public Date getSubmissionDeadline() { return SubmissionDeadline; }
        public TenderAnnouncement setSubmissionDeadline(Date value) { this.SubmissionDeadline = value; return this; }
        public TenderType getTenderType() { return TenderType; }
        public TenderAnnouncement setTenderType(TenderType value) { this.TenderType = value; return this; }
        public TenderStatus getTenderStatus() { return TenderStatus; }
        public TenderAnnouncement setTenderStatus(TenderStatus value) { this.TenderStatus = value; return this; }
        public Boolean getIsUnderPublish() { return IsUnderPublish; }
        public TenderAnnouncement setIsUnderPublish(Boolean value) { this.IsUnderPublish = value; return this; }
        public Date getPublishStartDateTime() { return PublishStartDateTime; }
        public TenderAnnouncement setPublishStartDateTime(Date value) { this.PublishStartDateTime = value; return this; }
        public Date getPublishEndDateTime() { return PublishEndDateTime; }
        public TenderAnnouncement setPublishEndDateTime(Date value) { this.PublishEndDateTime = value; return this; }
        public Integer getPublishedById() { return PublishedById; }
        public TenderAnnouncement setPublishedById(Integer value) { this.PublishedById = value; return this; }
        public Boolean getIsProcurementEnabled() { return IsProcurementEnabled; }
        public TenderAnnouncement setIsProcurementEnabled(Boolean value) { this.IsProcurementEnabled = value; return this; }
        public Boolean getIsComplianceEnabled() { return IsComplianceEnabled; }
        public TenderAnnouncement setIsComplianceEnabled(Boolean value) { this.IsComplianceEnabled = value; return this; }
    }

    public static enum ProcedureType
    {
        @SerializedName("0") Competition(0),
        @SerializedName("1") Simplified(1);

        private final int value;
        ProcedureType(final int intValue) { value = intValue; }
        public int getValue() { return value; }
    }

    public static enum TenderType
    {
        @SerializedName("0") Private(0),
        @SerializedName("1") Public(1);

        private final int value;
        TenderType(final int intValue) { value = intValue; }
        public int getValue() { return value; }
    }

    public static enum TenderStatus
    {
        @SerializedName("0") FirstRound(0),
        @SerializedName("1") SecondRound(1),
        @SerializedName("2") ThirdRound(2),
        @SerializedName("3") Successful(3),
        @SerializedName("4") UnSuccessful(4),
        @SerializedName("5") Revoked(5);

        private final int value;
        TenderStatus(final int intValue) { value = intValue; }
        public int getValue() { return value; }
    }

    public static class TenderFileDetails extends BrowseFileResponseBase
    {
        public Integer TenderId = null;
        public String DocumentType = null;
        public Boolean IsTenderAnnouncement = null;
        
        public Integer getTenderId() { return TenderId; }
        public TenderFileDetails setTenderId(Integer value) { this.TenderId = value; return this; }
        public String getDocumentType() { return DocumentType; }
        public TenderFileDetails setDocumentType(String value) { this.DocumentType = value; return this; }
        public Boolean getIsTenderAnnouncement() { return IsTenderAnnouncement; }
        public TenderFileDetails setIsTenderAnnouncement(Boolean value) { this.IsTenderAnnouncement = value; return this; }
    }

    public static class BrowseFileResponseBase
    {
        public Integer Id = null;
        public Integer FileContentId = null;
        public String FileName = null;
        public Long Size = null;
        
        public Integer getId() { return Id; }
        public BrowseFileResponseBase setId(Integer value) { this.Id = value; return this; }
        public Integer getFileContentId() { return FileContentId; }
        public BrowseFileResponseBase setFileContentId(Integer value) { this.FileContentId = value; return this; }
        public String getFileName() { return FileName; }
        public BrowseFileResponseBase setFileName(String value) { this.FileName = value; return this; }
        public Long getSize() { return Size; }
        public BrowseFileResponseBase setSize(Long value) { this.Size = value; return this; }
    }

    public static class TenderRoundSimple
    {
        public Integer Id = null;
        public String Name = null;
        public Boolean IsQuestionEnabled = null;
        public Date QuestionDeadline = null;
        public Date AnswerDeadline = null;
        public Date SubmissionDeadline = null;
        public Boolean IsSupplementaryEnabled = null;
        public Date SupplementaryRequestDeadline = null;
        public Date SupplementaryDeadline = null;
        public Date AnnouncementDateTime = null;
        public Integer Status = null;
        
        public Integer getId() { return Id; }
        public TenderRoundSimple setId(Integer value) { this.Id = value; return this; }
        public String getName() { return Name; }
        public TenderRoundSimple setName(String value) { this.Name = value; return this; }
        public Boolean getIsQuestionEnabled() { return IsQuestionEnabled; }
        public TenderRoundSimple setIsQuestionEnabled(Boolean value) { this.IsQuestionEnabled = value; return this; }
        public Date getQuestionDeadline() { return QuestionDeadline; }
        public TenderRoundSimple setQuestionDeadline(Date value) { this.QuestionDeadline = value; return this; }
        public Date getAnswerDeadline() { return AnswerDeadline; }
        public TenderRoundSimple setAnswerDeadline(Date value) { this.AnswerDeadline = value; return this; }
        public Date getSubmissionDeadline() { return SubmissionDeadline; }
        public TenderRoundSimple setSubmissionDeadline(Date value) { this.SubmissionDeadline = value; return this; }
        public Boolean getIsSupplementaryEnabled() { return IsSupplementaryEnabled; }
        public TenderRoundSimple setIsSupplementaryEnabled(Boolean value) { this.IsSupplementaryEnabled = value; return this; }
        public Date getSupplementaryRequestDeadline() { return SupplementaryRequestDeadline; }
        public TenderRoundSimple setSupplementaryRequestDeadline(Date value) { this.SupplementaryRequestDeadline = value; return this; }
        public Date getSupplementaryDeadline() { return SupplementaryDeadline; }
        public TenderRoundSimple setSupplementaryDeadline(Date value) { this.SupplementaryDeadline = value; return this; }
        public Date getAnnouncementDateTime() { return AnnouncementDateTime; }
        public TenderRoundSimple setAnnouncementDateTime(Date value) { this.AnnouncementDateTime = value; return this; }
        public Integer getStatus() { return Status; }
        public TenderRoundSimple setStatus(Integer value) { this.Status = value; return this; }
    }

}

Java BrowseTenderAnnouncement DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /tender/{tenderid}/announcement HTTP/1.1 
Host: szallitoiportal-be.veolia.hu 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Tender: 
	{
		TenderFiles: 
		[
			{
				TenderId: 0,
				DocumentType: String,
				IsTenderAnnouncement: False,
				Id: 0,
				FileContentId: 0,
				FileName: String,
				Size: 0
			}
		],
		TenderRounds: 
		[
			{
				Id: 0,
				Name: String,
				IsQuestionEnabled: False,
				QuestionDeadline: 0001-01-01,
				AnswerDeadline: 0001-01-01,
				SubmissionDeadline: 0001-01-01,
				IsSupplementaryEnabled: False,
				SupplementaryRequestDeadline: 0001-01-01,
				SupplementaryDeadline: 0001-01-01,
				AnnouncementDateTime: 0001-01-01,
				Status: 0
			}
		],
		TenderId: 0,
		TenderIdentifier: String,
		ProcedureType: 0,
		Subject: String,
		SubmissionDeadline: 0001-01-01,
		TenderType: 0,
		TenderStatus: 0,
		IsUnderPublish: False,
		PublishStartDateTime: 0001-01-01,
		PublishEndDateTime: 0001-01-01,
		PublishedById: 0,
		IsProcurementEnabled: False,
		IsComplianceEnabled: False
	},
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	}
}