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

import Foundation

public struct FindExistingUserByPhoneReq: Codable, Equatable {
    public var notFollowing: Bool
    public var phones: [String]?

    public init(notFollowing: Bool? = nil, phones: [String]? = nil) {
        self.notFollowing = notFollowing ?? true
        self.phones = phones
    }
}
