Axinom Mosaic Libraries
    Preparing search index...

    Interface UserProfilesResponse

    Represents the response for a getUserProfiles request.

    interface UserProfilesResponse {
        code: "SUCCESS" | "ERROR";
        details?: Record<string, unknown>;
        message?: string;
        userProfiles?: UserProfile[];
    }
    Index

    Properties

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