Portal

<back to all web services

BrowseAllQuestionFileByTenderUserTenderRound

Requires Authentication
Required role:VeoliaAdmin
The following routes are available for this service:
GET/tenderusertenderround/{tenderusertenderroundid}/question
import java.math.*
import java.util.*
import net.servicestack.client.*


open class BrowseAllQuestionFileByTenderUserTenderRound : IGet
{
    var TenderUserTenderRoundId:Int? = null
}

open class BrowseAllQuestionResponse : ResponseBase()
{
    var QuestionFiles:ArrayList<QuestionFileDetails> = ArrayList<QuestionFileDetails>()
}

open class ResponseBase
{
    var ResponseStatus:ResponseStatus? = null
}

open class QuestionFileDetails : BrowseFileResponseBase()
{
    var TenderUserTenderRoundId:Int? = null
    var SubmittedById:Int? = null
    var SubmissionDateTime:Date? = null
    var IsSubmitted:Boolean? = null
}

open class BrowseFileResponseBase
{
    var Id:Int? = null
    var FileContentId:Int? = null
    var FileName:String? = null
    var Size:Long? = null
}

Kotlin BrowseAllQuestionFileByTenderUserTenderRound 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 /tenderusertenderround/{tenderusertenderroundid}/question HTTP/1.1 
Host: szallitoiportal-be.veolia.hu 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	QuestionFiles: 
	[
		{
			TenderUserTenderRoundId: 0,
			SubmittedById: 0,
			SubmissionDateTime: 0001-01-01,
			IsSubmitted: False,
			Id: 0,
			FileContentId: 0,
			FileName: String,
			Size: 0
		}
	],
	ResponseStatus: 
	{
		ErrorCode: String,
		Message: String,
		StackTrace: String,
		Errors: 
		[
			{
				ErrorCode: String,
				FieldName: String,
				Message: String,
				Meta: 
				{
					String: String
				}
			}
		],
		Meta: 
		{
			String: String
		}
	}
}