ImageSource

public struct ImageSource : Codable, Equatable

The source type of the image.

  • The source type of the image.

    See more

    Declaration

    Swift

    public enum TypeEnum : String
  • The source type of the image.

    Declaration

    Swift

    public var type: String
  • Name of the image file if uploaded. Not returned when the image is passed by URL.

    Declaration

    Swift

    public var filename: String?
  • Name of the .zip file of images if uploaded. Not returned when the image is passed directly or by URL.

    Declaration

    Swift

    public var archiveFilename: String?
  • Source of the image before any redirects. Not returned when the image is uploaded.

    Declaration

    Swift

    public var sourceURL: String?
  • Fully resolved URL of the image after redirects are followed. Not returned when the image is uploaded.

    Declaration

    Swift

    public var resolvedURL: String?