| OLD | NEW |
| (Empty) |
| 1 <?php | |
| 2 # Generated by the protocol buffer compiler. DO NOT EDIT! | |
| 3 # source: google/protobuf/descriptor.proto | |
| 4 | |
| 5 /** | |
| 6 * Protobuf enum <code>google.protobuf.FieldOptions.JSType</code> | |
| 7 */ | |
| 8 namespace Google\Protobuf\Internal; | |
| 9 | |
| 10 class FieldOptions_JSType | |
| 11 { | |
| 12 /** | |
| 13 * <pre> | |
| 14 * Use the default type. | |
| 15 * </pre> | |
| 16 * | |
| 17 * <code>JS_NORMAL = 0;</code> | |
| 18 */ | |
| 19 const JS_NORMAL = 0; | |
| 20 /** | |
| 21 * <pre> | |
| 22 * Use JavaScript strings. | |
| 23 * </pre> | |
| 24 * | |
| 25 * <code>JS_STRING = 1;</code> | |
| 26 */ | |
| 27 const JS_STRING = 1; | |
| 28 /** | |
| 29 * <pre> | |
| 30 * Use JavaScript numbers. | |
| 31 * </pre> | |
| 32 * | |
| 33 * <code>JS_NUMBER = 2;</code> | |
| 34 */ | |
| 35 const JS_NUMBER = 2; | |
| 36 } | |
| 37 | |
| OLD | NEW |