Member Junction
    Preparing search index...

    Result of a CRUD operation against the Wicket API

    interface WicketCRUDResult {
        ErrorMessage?: string;
        ExternalID?: string;
        StatusCode: number;
        Success: boolean;
    }
    Index

    Properties

    ErrorMessage?: string

    Error message if the operation failed

    ExternalID?: string

    External ID of the created/updated record

    StatusCode: number

    HTTP status code from the API

    Success: boolean

    Whether the operation succeeded (2xx status)