We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fd51603 + 013ba53 commit b4a1a75Copy full SHA for b4a1a75
articles/azure-functions/functions-reference-java.md
@@ -316,18 +316,18 @@ public class Function {
316
}
317
318
public static class TestInputData {
319
- public String getKey() { return this.RowKey; }
320
- private String RowKey;
+ public String getKey() { return this.rowKey; }
+ private String rowKey;
321
322
public static class Person {
323
- public String PartitionKey;
324
- public String RowKey;
325
- public String Name;
+ public String partitionKey;
+ public String rowKey;
+ public String name;
326
327
public Person(String p, String r, String n) {
328
- this.PartitionKey = p;
329
- this.RowKey = r;
330
- this.Name = n;
+ this.partitionKey = p;
+ this.rowKey = r;
+ this.name = n;
331
332
333
0 commit comments