blob: 79ded4fe9af1a95a136941891573468e3e162110 [file] [log] [blame]
Matteo Scandolo990fa532017-09-07 09:46:33 -07001option app_label = "exampleservice";
Matteo Scandolo5bcf6832017-10-02 18:04:43 -07002option name = "exampleservice";
Sapan Bhatiace657e62017-04-21 14:20:41 +02003
4message ExampleService (Service){
Matteo Scandolo5bcf6832017-10-02 18:04:43 -07005 option verbose_name = "Example Service";
Sapan Bhatiace657e62017-04-21 14:20:41 +02006 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){
Scott Bakerffac7182017-07-27 15:21:30 -070011 option verbose_name = "Example Service Instance";
Sapan Bhatiace657e62017-04-21 14:20:41 +020012 required string tenant_message = 1 [help_text = "Tenant Message to Display", max_length = 254, null = False, db_index = False, blank = False];
13}