github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/api/cloudcontroller/ccv2/constant/godoc.go (about)

     1  // Package constant contains types and constants used by the ccv2 package.
     2  //
     3  // Constant Naming Conventions:
     4  //
     5  // The standard naming for a constant is <Constant Type><Enum Name>. The only
     6  // exception is 'state' types, where the word 'state' is omitted from the enum
     7  // values.
     8  //
     9  // For Example:
    10  //   Constant Type: PackageType
    11  //   Enum Name: Bits
    12  //   Enum Value: "bits"
    13  //   const PackageTypeBits PackageType = "bits"
    14  //
    15  //   Constant Type: PackageState
    16  //   Enum Name: Expired
    17  //   Enum Value: "EXPIRED"
    18  //   const PackageExpired PackageState = "EXPIRED"
    19  package constant