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

import Foundation

public struct ShareAttributionRequest: Codable, Equatable {
    public var contentId: String?
    public var contentType: String?
    public var shareId: String?
    public var source: String?

    public init(contentId: String? = nil, contentType: String? = nil, shareId: String? = nil, source: String? = nil) {
        self.contentId = contentId
        self.contentType = contentType
        self.shareId = shareId
        self.source = source
    }
}
