StoryMedia

public struct StoryMedia : Codable

카카오스토리의 내스토리 정보 중 이미지 내용을 담고 있는 구조체 입니다.

  • 원본 이미지의 url

    Declaration

    Swift

    public let original: URL?
  • xlarge 사이즈 이미지의 url

    Declaration

    Swift

    public let xlarge: URL?
  • large 사이즈 이미지의 url

    Declaration

    Swift

    public let large: URL?
  • medium 사이즈 이미지의 url

    Declaration

    Swift

    public let medium: URL?
  • small 사이즈 이미지의 url

    Declaration

    Swift

    public let small: URL?
  • Declaration

    Swift

    public init(from decoder: Decoder) throws