This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Specifies all the error types this particular service has. | |
abstract class ServerError | |
{ | |
const Undefined = 0; | |
const AlreadyExists = 1; | |
const InvalidArgument = 2; | |
const NotFound = 3; | |
} | |
//Shows the phone type. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: "com.google.protobuf" | |
description = "api" | |
version '1.0.1' | |
sourceCompatibility = 1.6 | |
targetCompatibility = 1.6 | |
def protocVersion = '3.0.2' |