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

import Foundation

public struct UpdateHookMetadataRequest: Codable, Equatable {
    public var allowComments: Bool?
    public var caption: String?
    public var customThumbnailS3Id: String?
    public var showLyrics: Bool?

    public init(allowComments: Bool? = nil, caption: String? = nil, customThumbnailS3Id: String? = nil, showLyrics: Bool? = nil) {
        self.allowComments = allowComments
        self.caption = caption
        self.customThumbnailS3Id = customThumbnailS3Id
        self.showLyrics = showLyrics
    }
}
