blob: 9b4ea5e9bd2153e99de2e998e042d432f469c05e [file] [log] [blame]
Sapan Bhatiace657e62017-04-21 14:20:41 +02001option name = "exampleservice";
Matteo Scandolo990fa532017-09-07 09:46:33 -07002option app_label = "exampleservice";
Sapan Bhatiace657e62017-04-21 14:20:41 +02003option verbose_name = "Example Service";
4
5message ExampleService (Service){
6 required string service_message = 1 [help_text = "Service Message to Display", max_length = 254, null = False, db_index = False, blank = False];
7}
8
9
Scott Bakerffac7182017-07-27 15:21:30 -070010message ExampleServiceInstance (TenantWithContainer){
11 option name = "exampleserviceinstance";
12 option verbose_name = "Example Service Instance";
Sapan Bhatiace657e62017-04-21 14:20:41 +020013 required string tenant_message = 1 [help_text = "Tenant Message to Display", max_length = 254, null = False, db_index = False, blank = False];
14}