Browse Source

[공통][Common] API comment

hyodong.min 6 years ago
parent
commit
8f7732e9cc

+ 31 - 1
app/src/common/java/kr/co/zumo/app/lifeplus/network/api/LifeplusAPIService.java

@@ -164,6 +164,12 @@ public class LifeplusAPIService extends LifeplusRetrofitService implements Lifep
     return api().getWeather(bean);
   }
 
+  /**
+   * FCM 토큰 저장
+   *
+   * @param bean
+   * @return
+   */
   @Override
   public Single<LifeplusAPIBean> saveFcmToken(TokenRequestBean bean) {
     return api().saveFcmToken(bean);
@@ -270,7 +276,7 @@ public class LifeplusAPIService extends LifeplusRetrofitService implements Lifep
   }
 
   /**
-   * 회원 잠금 해제
+   * 회원 휴면 해제
    *
    * @param bean
    * @return
@@ -280,6 +286,12 @@ public class LifeplusAPIService extends LifeplusRetrofitService implements Lifep
     return api().updateUnRestMember(bean);
   }
 
+  /**
+   * 회원 잠금 해제
+   *
+   * @param bean
+   * @return
+   */
   @Override
   public Single<LifeplusAPIBean> updateUnlockMember(RequestBean bean) {
     return api().updateUnlockMember(bean);
@@ -375,6 +387,12 @@ public class LifeplusAPIService extends LifeplusRetrofitService implements Lifep
     return api().getCategoryFilterDetail(bean);
   }
 
+  /**
+   * 필터링 컨텐츠
+   *
+   * @param bean
+   * @return
+   */
   @Override
   public Single<CategoryContentsResultBean> getCategoryFilterContents(CategoryFilterContentsRequestBean bean) {
     return api().getCategoryFilterContents(bean);
@@ -548,6 +566,12 @@ public class LifeplusAPIService extends LifeplusRetrofitService implements Lifep
     return api().deleteMyBucket(bean);
   }
 
+  /**
+   * device id 업데이트
+   *
+   * @param bean
+   * @return
+   */
   @Override
   public Single<LifeplusAPIBean> updateDeviceId(RequestBean bean) {
     return apiWithoutHeaders().updateDeviceId(bean);
@@ -828,6 +852,12 @@ public class LifeplusAPIService extends LifeplusRetrofitService implements Lifep
     return api().getCoinBanner(bean);
   }
 
+  /**
+   * 요청 주문에 대한 환불 가능 코인 조회
+   *
+   * @param bean
+   * @return
+   */
   @Override
   public Single<CoinAvailableResultBean> getAvailableCoin(CoinAvailableRequestBean bean) {
     return api().getAvailableCoin(bean);