후원 랭킹 기간 선택 추가

프로필 후원 랭킹 조회와 프로필 갱신 요청에 기간 값을 전달한다.
This commit is contained in:
2026-02-03 19:09:55 +09:00
parent 84803c171c
commit 21c87f95ef
11 changed files with 242 additions and 6 deletions

View File

@@ -2,6 +2,7 @@ package kr.co.vividnext.sodalive.mypage.profile
import androidx.annotation.Keep
import com.google.gson.annotations.SerializedName
import kr.co.vividnext.sodalive.explorer.profile.donation.DonationRankingPeriod
import kr.co.vividnext.sodalive.user.Gender
@Keep
@@ -19,5 +20,6 @@ data class ProfileUpdateRequest(
@SerializedName("websiteUrl") val websiteUrl: String? = null,
@SerializedName("blogUrl") val blogUrl: String? = null,
@SerializedName("isVisibleDonationRank") val isVisibleDonationRank: Boolean? = null,
@SerializedName("donationRankingPeriod") val donationRankingPeriod: DonationRankingPeriod? = null,
@SerializedName("container") val container: String = "aos"
)