Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 7848966

Browse files
committed
make all fields camelCase
1 parent 3566c58 commit 7848966

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

api/src/core/main.tsp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ namespace models {
2222
key_data: string;
2323

2424
@doc("The serial number of the ID-Cert this key material is associated with.")
25-
serial_number: uint64;
25+
serialNumber: uint64;
2626

2727
/**
2828
* Information about the algorithms used to encrypt the data held by the `key_data` field.
2929
* Order-sensitive; The encryption used for the first encryption operation must be the last
3030
* item of this array and vice versa. Represents a list of OIDs.
3131
*/
3232
@minItems(1)
33-
encryption_algorithms: Array<Array<uint16>>;
33+
encryptionAlgorithms: Array<Array<uint16>>;
3434
}
3535

3636
/**
@@ -79,7 +79,7 @@ namespace models {
7979
signature: string;
8080

8181
@doc("The serial number of the ID-Cert corresponding to the private identity key used to sign the key trial string.")
82-
serial_number: uint64;
82+
serialNumber: uint64;
8383
}
8484

8585
/**

0 commit comments

Comments
 (0)