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

import Foundation

public struct UserMobileProfileSchema: Codable, Equatable {
    public var phone: String
    /// SimpleProfileInfoSchema
    public var profile: SimpleProfileInfoSchema

    public init(phone: String, profile: SimpleProfileInfoSchema) {
        self.phone = phone
        self.profile = profile
    }
}
