Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nanashili committed Jul 21, 2024
2 parents 10cd971 + e8a4798 commit 95f4f3d
Showing 1 changed file with 8 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,16 @@ public struct IAPIMentionableResponse: Codable {
}

public struct IAPIMentionableUser: Codable {
/**
* The username or "handle" of the user
*/
/// The username or "handle" of the user
public let login: String
/**
* The user's real name (or at least the name that the user
* has configured to be shown) or null if the user hasn't provided
* a real name for their public profile.
*/

/// The user's real name (or at least the name that the user
/// has configured to be shown) or null if the user hasn't provided
/// a real name for their public profile.
public let name: String?
/**
* The user's attributable email address or null if the
* user doesn't have an email address that they can be
* attributed by
*/
/// The user's attributable email address or null if the
/// user doesn't have an email address that they can be
/// attributed by
public let email: String
/**
* A url to an avatar image chosen by the user
*/
/// A url to an avatar image chosen by the user
public let avatar_url: String
}

0 comments on commit 95f4f3d

Please sign in to comment.