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

import Foundation

public struct VideoRenderStickerSchema: Codable, Equatable {
    public var stickerId: String
    public var text: String

    public init(stickerId: String, text: String) {
        self.stickerId = stickerId
        self.text = text
    }
}
