Axinom Mosaic Libraries
    Preparing search index...

    Interface UserProfileCreateResponse

    Represents the response for a createUserProfile request.

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

    Properties

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