Axinom Mosaic Libraries
    Preparing search index...

    Interface UserProfileUpdateResponse

    Represents the response for a updateUserProfile request.

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

    Properties

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