Axinom Mosaic Libraries
    Preparing search index...

    Interface UserProfileDeleteResponse

    Represents the response for a deleteUserProfile request.

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

    Properties

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