// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct OEmbedResponse: Codable, Equatable {
    public var height: Int
    public var html: String
    public var iframeUrl: String
    public var providerName: String
    public var providerUrl: String
    public var title: String
    public var type: String
    public var version: String
    public var width: Int

    public init(height: Int, html: String, iframeUrl: String, providerName: String, providerUrl: String, title: String, type: String, version: String, width: Int) {
        self.height = height
        self.html = html
        self.iframeUrl = iframeUrl
        self.providerName = providerName
        self.providerUrl = providerUrl
        self.title = title
        self.type = type
        self.version = version
        self.width = width
    }
}
