Bridge

<back to all web services

DealRecapAccept

Deal Recaps
The following routes are available for this service:
GET/Deal-Recap/Accept

export class DealRecapAccept
{
    public Guid: string;

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

export class GetRecapDetailsViewModel
{
    public Guid: string;
    public DocumentTitle: string;
    public GeneralComments: string;
    public EnquiryId: number;
    public EnquiryGuid: string;
    public CompanyLogo: string;
    public FromContactName: string;
    public ContactGuid: string;
    public EntityName: string;
    public VesselName: string;
    public IMONumber: number;
    public PortCode: string;
    public PortName: string;
    public CountryName: string;
    public CountryFlag: string;
    public DateFrom: string;
    public DateTo: string;
    public BuyerAccountName: string;
    public DeliveryMethod: string;
    public AgentDetails: string;
    public RecapTerms: string;
    public AdditionalCosts: string;
    public RecapGrades: string;
    public Accepted?: boolean;
    public Rejected?: boolean;
    public FromEntityContactId: number;
    public ToEntityContactId: number;
    public RecapComments: string;
    public TermsAndConditions: string;
    public ImageGuid: string;
    public VesselId: number;
    public ConfirmationOnly: boolean;

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

TypeScript DealRecapAccept 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 /Deal-Recap/Accept HTTP/1.1 
Host: internal.thebunkerbridge.com 
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Guid: 00000000000000000000000000000000,
	DocumentTitle: String,
	GeneralComments: String,
	EnquiryId: 0,
	EnquiryGuid: 00000000000000000000000000000000,
	CompanyLogo: AA==,
	FromContactName: String,
	ContactGuid: 00000000000000000000000000000000,
	EntityName: String,
	VesselName: String,
	IMONumber: 0,
	PortCode: String,
	PortName: String,
	CountryName: String,
	CountryFlag: AA==,
	DateFrom: 0001-01-01,
	DateTo: 0001-01-01,
	BuyerAccountName: String,
	DeliveryMethod: String,
	AgentDetails: String,
	RecapTerms: String,
	AdditionalCosts: String,
	RecapGrades: String,
	Accepted: False,
	Rejected: False,
	FromEntityContactId: 0,
	ToEntityContactId: 0,
	RecapComments: String,
	TermsAndConditions: String,
	ImageGuid: 00000000000000000000000000000000,
	VesselId: 0,
	ConfirmationOnly: False
}