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

import Foundation

public struct InviteSchema: Codable, Equatable {
    public var errorMsg: String?
    public var potentialReward: Bool
    public var potentialRewardAmount: Int?

    public init(errorMsg: String? = nil, potentialReward: Bool? = nil, potentialRewardAmount: Int? = nil) {
        self.errorMsg = errorMsg
        self.potentialReward = potentialReward ?? false
        self.potentialRewardAmount = potentialRewardAmount
    }
}
