Matteo Scandolo | 990fa53 | 2017-09-07 09:46:33 -0700 | [diff] [blame] | 1 | option app_label = "exampleservice"; |
Matteo Scandolo | 5bcf683 | 2017-10-02 18:04:43 -0700 | [diff] [blame] | 2 | option name = "exampleservice"; |
Sapan Bhatia | ce657e6 | 2017-04-21 14:20:41 +0200 | [diff] [blame] | 3 | |
| 4 | message ExampleService (Service){ |
Matteo Scandolo | 5bcf683 | 2017-10-02 18:04:43 -0700 | [diff] [blame] | 5 | option verbose_name = "Example Service"; |
Sapan Bhatia | ce657e6 | 2017-04-21 14:20:41 +0200 | [diff] [blame] | 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 Baker | ffac718 | 2017-07-27 15:21:30 -0700 | [diff] [blame] | 10 | message ExampleServiceInstance (TenantWithContainer){ |
Scott Baker | ffac718 | 2017-07-27 15:21:30 -0700 | [diff] [blame] | 11 | option verbose_name = "Example Service Instance"; |
Sapan Bhatia | ce657e6 | 2017-04-21 14:20:41 +0200 | [diff] [blame] | 12 | required string tenant_message = 1 [help_text = "Tenant Message to Display", max_length = 254, null = False, db_index = False, blank = False]; |
| 13 | } |