-
Notifications
You must be signed in to change notification settings - Fork 0
/
advertisers.proto
57 lines (46 loc) · 1.27 KB
/
advertisers.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
syntax = "proto3";
package cakeproto;
import "common.proto";
message Advertiser {
message Event {
int64 id = 1;
string name = 2;
IdName price_format = 3;
bool active = 4;
bool allow_duplicates = 5;
IdName transaction_id_deduplication = 6;
Money payout = 7;
Money received = 8;
bool portal = 9;
bool active_for_all_offers = 10;
bool fire_global_pixel = 11;
string postback_url = 12;
int64 postback_delay_ms = 13;
string pixel = 14;
bool event_payout_and_received_trumps_other_sources = 15;
}
int64 id = 1;
string name = 2;
IdName account_manager = 3;
IdName account_status = 4;
string street1 = 5;
string street2 = 6;
string city = 7;
string state = 8;
string zip_code = 9;
string country = 10;
string website = 11;
repeated Contact contacts = 12;
repeated IdName tags = 13;
repeated SuppressionList suppression_lists = 14;
repeated Blacklist blacklists = 15;
repeated Event events = 21;
IdName billing_cycle = 16;
string quickbooks_id = 17;
bool online_signup = 18;
// signup_ip_address omitted - for privacy reasons
// api_key omitted - for security reasons
TimeWithZone date_created = 19;
//date_last_accepted_terms omitted - cannot be reproduced in UI
string notes = 20;
}