Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions objects_set_uuid_metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ func newSetUUIDMetadataBuilderWithContext(pubnub *PubNub,

// SetUUIDMetadataBody is the input to update user
type SetUUIDMetadataBody struct {
Name string `json:"name"`
ExternalID string `json:"externalId"`
ProfileURL string `json:"profileUrl"`
Email string `json:"email"`
Custom map[string]interface{} `json:"custom"`
Name string `json:"name,omitempty"`
ExternalID string `json:"externalId,omitempty"`
ProfileURL string `json:"profileUrl,omitempty"`
Email string `json:"email,omitempty"`
Custom map[string]interface{} `json:"custom,omitempty"`
}

func (b *setUUIDMetadataBuilder) UUID(uuid string) *setUUIDMetadataBuilder {
Expand Down