Portal

<back to all web services

BrowseAllSupplementaryFile

The following routes are available for this service:
GET/tender/{tenderid}/user/{userid}/round/{tenderroundid}/supplementary/{supplementaryid}/file

export class TenderUserTenderRoundBase
{
    public TenderId: number;
    public UserId: number;
    public TenderRoundId: number;

    public constructor(init?: Partial<TenderUserTenderRoundBase>) { (Object as any).assign(this, init); }
}

export class SupplementaryBase extends TenderUserTenderRoundBase
{
    public SupplementaryId: number;

    public constructor(init?: Partial<SupplementaryBase>) { super(init); (Object as any).assign(this, init); }
}

export class ResponseBase
{
    public ResponseStatus: ResponseStatus;

    public constructor(init?: Partial<ResponseBase>) { (Object as any).assign(this, init); }
}

export class BrowseFileResponseBase
{
    public Id: number;
    public FileContentId: number;
    public FileName: string;
    public Size: number;

    public constructor(init?: Partial<BrowseFileResponseBase>) { (Object as any).assign(this, init); }
}

export enum SupplementaryFileDirection
{
    Request = 0,
    Response = 1,
}

export class SupplementaryFileDetails extends BrowseFileResponseBase
{
    public SupplementaryId: number;
    public SupplementaryDocumentTypeId: number;
    public SupplementaryDocumentType: string;
    public Direction: SupplementaryFileDirection;

    public constructor(init?: Partial<SupplementaryFileDetails>) { super(init); (Object as any).assign(this, init); }
}

export class BrowseAllSupplementaryFileResponse extends ResponseBase
{
    public SupplementaryFiles: SupplementaryFileDetails[];

    public constructor(init?: Partial<BrowseAllSupplementaryFileResponse>) { super(init); (Object as any).assign(this, init); }
}

export class BrowseAllSupplementaryFile extends SupplementaryBase implements IGet
{

    public constructor(init?: Partial<BrowseAllSupplementaryFile>) { super(init); (Object as any).assign(this, init); }
}

TypeScript BrowseAllSupplementaryFile 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}/user/{userid}/round/{tenderroundid}/supplementary/{supplementaryid}/file HTTP/1.1 
Host: szallitoiportal-be.veolia.hu 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	SupplementaryFiles: 
	[
		{
			SupplementaryId: 0,
			SupplementaryDocumentTypeId: 0,
			SupplementaryDocumentType: String,
			Direction: 0,
			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
		}
	}
}