Axinom Mosaic Libraries
    Preparing search index...

    Interface UserProfileResponse

    Represents the response for a getUserProfile request.

    interface UserProfileResponse {
        code: "SUCCESS" | "ERROR";
        details?: Record<string, unknown>;
        message?: string;
        userProfile?: UserProfile;
    }
    Index

    Properties

    code: "SUCCESS" | "ERROR"
    details?: Record<string, unknown>
    message?: string
    userProfile?: UserProfile