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

import Foundation

public struct MediaCommentUpdateRequest: Codable, Equatable {
    public var comment: String

    public init(comment: String) {
        self.comment = comment
    }
}
