Skip to content

Instantly share code, notes, and snippets.

@ScorpiusZ
Last active March 14, 2018 08:19
Show Gist options
  • Save ScorpiusZ/c0b9c3dfae554cba0170ff20780e2abc to your computer and use it in GitHub Desktop.
Save ScorpiusZ/c0b9c3dfae554cba0170ff20780e2abc to your computer and use it in GitHub Desktop.
func config(callback: @escaping (Config) -> () ){
request("/v1/configurations", callback: callback)
}
//
// Config.swift
// Idui
//
// Created by ScorpiusZ on 2018/3/14.
// Copyright © 2018年 saxer. All rights reserved.
//
import Foundation
struct Config: ApiModel{
var attrs: Attrs
var base_config: BaseConfig
var provinces: [Region]
var ages: [Int]
var height: [Int]
var characters: [Tag]
var interests: [Tag]
var charming_parts: [Tag]
var age_ranges: [String]
var height_ranges: [String]
var profession: [String: [Profession]]
}
typealias Attrs = [String: [Int: String]]
struct BaseConfig: ApiModel{
var audio_call_max_count: Int
var first_login_reward: Int
var blind_date_duration_reward: Int
var video_blind_date_reward: Int
var max_baby_cupid_age: Int
}
struct Region: ApiModel{
var location_id: Int
var name: String
}
struct Tag: ApiModel{
var tag_id: Int
var tag_type_id: Int
var name: String
}
struct Profession: ApiModel{
var id: Int
var name: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment