-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuthDataResponse.swift
More file actions
37 lines (34 loc) · 851 Bytes
/
Copy pathAuthDataResponse.swift
File metadata and controls
37 lines (34 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// AuthDataResponse.swift
// DevLogData
//
// Created by 최윤진 on 11/2/25.
//
import Foundation
import DevLogDomain
public struct AuthDataResponse {
public let uid: String
public let displayName: String?
public let email: String?
public let providers: [String]
public let providerID: String
public let fcmToken: String
public let accessToken: String?
public init(
uid: String,
displayName: String?,
email: String?,
providers: [String],
providerID: String,
fcmToken: String,
accessToken: String? = nil
) {
self.uid = uid
self.displayName = displayName
self.email = email
self.providers = providers
self.providerID = providerID
self.fcmToken = fcmToken
self.accessToken = accessToken
}
}