@@ -60,6 +60,21 @@ extension AppBskyLexicon.Actor {
6060 /// - Note: According to the AT Protocol specifications: "Debug information for internal development."
6161 public let debug : UnknownType ?
6262
63+ public init ( actorDID: String , actorHandle: String , displayName: String ? = nil , pronouns: String ? = nil , avatarImageURL: URL ? = nil , associated: ProfileAssociatedDefinition ? = nil , viewer: ViewerStateDefinition ? = nil , labels: [ ComAtprotoLexicon . Label . LabelDefinition ] ? = nil , createdAt: Date ? = nil , verificationState: VerificationStateDefinition ? = nil , status: StatusViewDefinition ? = nil , debug: UnknownType ? = nil ) {
64+ self . actorDID = actorDID
65+ self . actorHandle = actorHandle
66+ self . displayName = displayName
67+ self . pronouns = pronouns
68+ self . avatarImageURL = avatarImageURL
69+ self . associated = associated
70+ self . viewer = viewer
71+ self . labels = labels
72+ self . createdAt = createdAt
73+ self . verificationState = verificationState
74+ self . status = status
75+ self . debug = debug
76+ }
77+
6378 public init ( from decoder: any Decoder ) throws {
6479 let container = try decoder. container ( keyedBy: CodingKeys . self)
6580
@@ -169,6 +184,23 @@ extension AppBskyLexicon.Actor {
169184 /// - Note: According to the AT Protocol specifications: "Debug information for internal development."
170185 public let debug : UnknownType ?
171186
187+ public init ( actorDID: String , actorHandle: String , displayName: String ? = nil , description: String ? = nil , pronouns: String ? = nil , websiteURL: URL ? = nil , avatarImageURL: URL ? = nil , associated: ProfileAssociatedDefinition ? = nil , indexedAt: Date ? = nil , createdAt: Date ? = nil , viewer: ViewerStateDefinition ? = nil , labels: [ ComAtprotoLexicon . Label . LabelDefinition ] ? = nil , verificationState: VerificationStateDefinition ? = nil , status: StatusViewDefinition ? = nil , debug: UnknownType ? = nil ) {
188+ self . actorDID = actorDID
189+ self . actorHandle = actorHandle
190+ self . displayName = displayName
191+ self . description = description
192+ self . pronouns = pronouns
193+ self . websiteURL = websiteURL
194+ self . avatarImageURL = avatarImageURL
195+ self . associated = associated
196+ self . indexedAt = indexedAt
197+ self . createdAt = createdAt
198+ self . viewer = viewer
199+ self . labels = labels
200+ self . verificationState = verificationState
201+ self . status = status
202+ self . debug = nil
203+ }
172204 public init ( from decoder: any Decoder ) throws {
173205 let container = try decoder. container ( keyedBy: CodingKeys . self)
174206
0 commit comments