Interface UserProfilesNotFoundResponse

interface UserProfilesNotFoundResponse {
    error: {
        code: number;
        message: string;
    };
}

Properties

Properties

error: {
    code: number;
    message: string;
}