예제 #1
0
        public AdflyApi(string public_key, string secret_key, ulong user_id)
        {
            this.configuration = new Configuration()
            {
                Public_Key = public_key,
                Secret_Key = secret_key,
                User_Id    = user_id
            };

            this.rest_service = new AdflyRest(this.configuration);
        }
예제 #2
0
 public AdflyApi(Configuration configuration)
 {
     this.configuration = configuration;
     this.rest_service  = new AdflyRest(this.configuration);
 }