Skip to content

Commit 8df0f39

Browse files
authored
Update README.md
Camelcase...
1 parent fccdf60 commit 8df0f39

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ const article = await client.helpCenter.collections.update({
901901
id: '123',
902902
name: 'Thanks for everything',
903903
description: 'English description',
904-
translated_content: {
904+
translatedContent: {
905905
fr: {
906906
name: 'Allez les verts',
907907
description: 'French description',
@@ -934,7 +934,7 @@ const response = client.helpCenter.collections.list({
934934
```typescript
935935
const collection = await client.helpCenter.sections.create({
936936
name: 'Thanks for everything',
937-
parent_id: '1234',
937+
parentId: '1234',
938938
translatedContent: {
939939
fr: {
940940
name: 'Allez les verts',
@@ -956,8 +956,8 @@ const response = await client.helpCenter.sections.find({ id: '123' });
956956
const article = await client.helpCenter.sections.update({
957957
id: '123',
958958
name: 'Thanks for everything',
959-
parent_id: '456',
960-
translated_content: {
959+
parentId: '456',
960+
translatedContent: {
961961
fr: {
962962
name: 'Allez les verts',
963963
description: 'French description',

0 commit comments

Comments
 (0)