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

import Foundation

public struct StudioProjectUpdateMetadataSpec: Codable, Equatable {
    public var imageS3Id: String?
    public var notes: String?
    public var title: String?

    public init(imageS3Id: String? = nil, notes: String? = nil, title: String? = nil) {
        self.imageS3Id = imageS3Id
        self.notes = notes
        self.title = title
    }
}
