satim-module - v1.0.0
    Preparing search index...

    Interface RegisterOrderResponse

    Response from /register.do and /registerPreAuth.do.

    Invariants on successful registration (errorCode === "0" or absent):

    • orderId is a non-empty string.
    • formUrl is a non-empty string. Must be HTTPS on a trusted *.satim.dz host before RegisterResponse.redirectResponse() will emit a redirect.

    On failure, errorCode is set and the SDK converts it to a typed exception in HttpClientService.validateApiResponse.

    interface RegisterOrderResponse {
        orderId: string;
        formUrl: string;
        errorCode?: string;
        errorMessage?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    orderId: string
    formUrl: string
    errorCode?: string
    errorMessage?: string