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

import Foundation

public struct PersonaClipSchema: Codable, Equatable, Identifiable {
    /// GeneratedClipSchema
    public var clip: GeneratedClipSchema
    public var id: Int?

    public init(clip: GeneratedClipSchema, id: Int? = nil) {
        self.clip = clip
        self.id = id
    }
}
