You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/doc_1_concepts.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,15 @@ Note: The `experimental` label refers specifically to the Atlas Go SDK methods.
55
55
56
56
If you encounter any problems with methods marked as experimental, feel free to raise a [Github issue](https://github.com/mongodb/atlas-sdk-go/issues/new/choose).
57
57
58
+
## Read Only and Write Only Fields
59
+
60
+
Each SDK request and response might contain read or write only fields as identified by the [documentation](https://github.com/mongodb/atlas-sdk-go/blob/main/docs/doc_last_reference.md#documentation-for-models) and the Go doc comments.
61
+
62
+
We use GoDoc comments to annotate fields as read and write only:
63
+
64
+
-`// Read Only field.` means that the field is included in responses but not in requests
65
+
-`// Write Only field.` means that the field may be included in requests but not in responses
66
+
58
67
## Example
59
68
60
69
To learn more about using the SDK, see the [basic example](https://github.com/mongodb/atlas-sdk-go/blob/main/examples/basic/basic.go).
0 commit comments