Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 735 Bytes

UpdateOrganizationMembershipMetadataRequest.md

File metadata and controls

20 lines (14 loc) · 735 Bytes

ClerkBackend::UpdateOrganizationMembershipMetadataRequest

Properties

Name Type Description Notes
public_metadata Object Metadata saved on the organization membership, that is visible to both your frontend and backend. The new object will be merged with the existing value. [optional]
private_metadata Object Metadata saved on the organization membership that is only visible to your backend. The new object will be merged with the existing value. [optional]

Example

require 'clerk-sdk-ruby-backend'

instance = ClerkBackend::UpdateOrganizationMembershipMetadataRequest.new(
  public_metadata: null,
  private_metadata: null
)