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

import Foundation

/// Schema for creating a share event
public struct ShareEventRequest: Codable, Equatable {
    public var recipient: String
    public var sendNotification: Bool?
    public var shareId: String

    public init(recipient: String, sendNotification: Bool? = nil, shareId: String) {
        self.recipient = recipient
        self.sendNotification = sendNotification
        self.shareId = shareId
    }
}
