Sapan Bhatia | ce657e6 | 2017-04-21 14:20:41 +0200 | [diff] [blame] | 1 | option name = "exampleservice"; |
| 2 | option verbose_name = "Example Service"; |
| 3 | |
| 4 | message ExampleService (Service){ |
| 5 | required string service_message = 1 [help_text = "Service Message to Display", max_length = 254, null = False, db_index = False, blank = False]; |
| 6 | } |
| 7 | |
| 8 | |
Scott Baker | ffac718 | 2017-07-27 15:21:30 -0700 | [diff] [blame^] | 9 | message ExampleServiceInstance (TenantWithContainer){ |
| 10 | option name = "exampleserviceinstance"; |
| 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 | } |