Skip to content

Commit

Permalink
Update IAPIMentionableResponse Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nanashili authored Jul 16, 2024
1 parent 991824f commit e8a4798
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 e8a4798

Please sign in to comment.