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
Nickname
Password
Tag
GetProfileResponse.swift
ProfileUpdateRequest.swift
ProfileUpdateView.swift
ProfileUpdateViewModel.swift
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
25 lines
471 B
Swift
25 lines
471 B
Swift
//
|
|
// GetProfileResponse.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 2023/08/19.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct GetProfileResponse: Decodable {
|
|
let userId: Int
|
|
let email: String
|
|
let nickname: String
|
|
let gender: Gender
|
|
var profileUrl: String
|
|
let chargeCan: Int
|
|
let rewardCan: Int
|
|
let youtubeUrl: String?
|
|
let instagramUrl: String?
|
|
let blogUrl: String?
|
|
let websiteUrl: String?
|
|
let introduce: String
|
|
let tags: [String]
|
|
}
|