Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
k-capehart committed Apr 22, 2024
1 parent a498f09 commit b7bcae7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@ Updates a list of salesforce records of the given type
```go
type Contact struct {
Id string
LastName string
}
```
```go
Expand All @@ -300,6 +301,7 @@ if err != nil {

Updates (or inserts) a list of salesforce records using the given ExternalId
- `sObjectName`: API name of Salesforce object
- `externalIdFieldName`: field API name for an external Id that exists on the given object
- `records`: a slice of salesforce records
- A value for the External Id is required
- `batchSize`: `1 <= batchSize <= 200`
Expand Down Expand Up @@ -406,6 +408,7 @@ Updates a list of salesforce records in a single request
```go
type Contact struct {
Id string
LastName string
}
```
```go
Expand All @@ -430,6 +433,7 @@ if err != nil {

Updates (or inserts) a list of salesforce records using the given ExternalId in a single request
- `sObjectName`: API name of Salesforce object
- `externalIdFieldName`: field API name for an external Id that exists on the given object
- `records`: a slice of salesforce records
- A value for the External Id is required
- `batchSize`: `1 <= batchSize <= 200`
Expand Down

0 comments on commit b7bcae7

Please sign in to comment.