Friend
public struct Friend : Codable
카카오톡 친구 입니다.
-
사용자 아이디
Declaration
Swift
public let id: Int64?
-
메시지를 전송하기 위한 고유 아이디
사용자의 계정 상태에 따라 이 정보는 바뀔 수 있습니다. 앱내의 사용자 식별자로 저장 사용되는 것은 권장하지 않습니다.
Declaration
Swift
public let uuid: String
-
닉네임
Declaration
Swift
public let profileNickname: String?
-
썸네일 이미지 URL
Declaration
Swift
public let profileThumbnailImage: URL?
-
즐겨찾기 추가 여부
Declaration
Swift
public let favorite: Bool?
-
메시지 수신이 허용되었는지 여부. 앱가입 친구의 경우는 feed msg에 해당. 앱미가입친구는 invite msg에 해당
Declaration
Swift
public let allowedMsg: Bool?
-
Declaration
Swift
public init(from decoder: Decoder) throws