| All Verbs | /RequestFranceWallet |
|---|
// @ts-nocheck
export class FranceWalletMemberData
{
public AESMemberID?: string;
public MemberID?: string;
public Forename?: string;
public Surname?: string;
public TierDescription: number;
public CurrentPoints?: string;
public NoofStaysToNextTier?: string;
public constructor(init?: Partial<FranceWalletMemberData>) { (Object as any).assign(this, init); }
}
export class FrResponse
{
// @DataMember
public HasError: boolean;
// @DataMember
public Error?: string;
// @DataMember
public MemberData?: FranceWalletMemberData;
public constructor(init?: Partial<FrResponse>) { (Object as any).assign(this, init); }
}
export class RequestFranceWallet
{
public AESMemberID?: string;
public constructor(init?: Partial<RequestFranceWallet>) { (Object as any).assign(this, init); }
}
TypeScript RequestFranceWallet DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /RequestFranceWallet HTTP/1.1
Host: bwdynamicsuat.rapp-customers.co.uk
Accept: application/json
Content-Type: application/json
Content-Length: length
{"AESMemberID":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"HasError":false,"Error":"String","MemberData":{"AESMemberID":"String","MemberID":"String","Forename":"String","Surname":"String","TierDescription":0,"CurrentPoints":"String","NoofStaysToNextTier":"String"}}