Files
SodaLive
Preview Content
Resources
Sources
Agora
App
Common
Content
Debug
Dialog
Explorer
Extensions
Follow
Font
IAP
ImagePicker
Keyboard
Live
Main
Message
MyPage
Auth
Can
OrderList
Profile
ReservationStatus
ServiceCenter
CanCardView.swift
MyInfoCardView.swift
MyPageResponse.swift
MyPageView.swift
MyPageViewModel.swift
ReservationStatusView.swift
NavigationBar
Onboarding
Report
Settings
Shape
Splash
User
Utils
ContentView.swift
SodaLive.entitlements
SodaLive.xcworkspace
generated
.gitignore
Podfile
Podfile.lock
SodaLive-dev.entitlements
model-SodaLive-dev.json
model-SodaLive.json
sodalive-ios/SodaLive/Sources/MyPage/MyPageResponse.swift
2023-08-24 14:30:09 +09:00

24 lines
457 B
Swift

//
// MyPageResponse.swift
// SodaLive
//
// Created by klaus on 2023/08/10.
//
import Foundation
struct MyPageResponse: Decodable {
let nickname: String
let profileUrl: String
let chargeCan: Int
let rewardCan: Int
let youtubeUrl: String?
let instagramUrl: String?
let websiteUrl: String?
let blogUrl: String?
let liveReservationCount: Int
let isAuth: Bool
let orderList: GetAudioContentOrderListResponse
}