All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.blankcat.openapi.MemberService Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package cn.blankcat.openapi;

import cn.blankcat.dto.member.Member;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Path;

public interface MemberService {

    @GET("/guilds/{guild_id}/members/{user_id}")
    // displayId-4294933842
    // 真实id-8117798136657212767
    Call getGuildUser(@Path("guild_id") String guildId,
                              @Path("user_id") String userId);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy