InstagramUser

public struct InstagramUser : Decodable

The struct containing an Instagram user.

  • id

    The user identifier.

    Declaration

    Swift

    public let id: String
  • The user’s username.

    Declaration

    Swift

    public let username: String
  • The URL of the user’s profile picture.

    Declaration

    Swift

    public let profilePicture: URL
  • The user’s full name.

    Declaration

    Swift

    public let fullName: String
  • bio

    The text of the user’s biography.

    Declaration

    Swift

    public let bio: String?
  • The user’s website.

    Declaration

    Swift

    public let website: String?
  • A Boolean value that indicates whether the user has a business profile.

    Declaration

    Swift

    public let isBusiness: Bool?
  • A Counts object that contains the number of followers, following and media of a user.

    Declaration

    Swift

    public let counts: Counts?
  • The struct containing the number of followers, following and media of a user.

    See more

    Declaration

    Swift

    public struct Counts : Decodable