Interface Order

Represents an order for a product

interface Order {
    accessToken?: string;
    applicationUsername: string;
    cancelUrl: string;
    offerId: string;
    successUrl: string;
}

Properties

accessToken?: string

Optional access token for the user

applicationUsername: string

Username in the application

cancelUrl: string

URL to redirect to on cancel

offerId: string

Unique identifier for the offer

successUrl: string

URL to redirect to on success