Last active
March 14, 2018 08:19
-
-
Save ScorpiusZ/c0b9c3dfae554cba0170ff20780e2abc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func config(callback: @escaping (Config) -> () ){ | |
request("/v1/configurations", callback: callback) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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