Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Latest commit

 

History

History
22 lines (16 loc) · 449 Bytes

AuthUserUpdateRequest.md

File metadata and controls

22 lines (16 loc) · 449 Bytes

Marqeta::AuthUserUpdateRequest

Properties

Name Type Description Notes
password String [optional]
active Boolean [optional][default to false]
roles Array<String> An array of roles [optional]

Example

require 'marqeta'

instance = Marqeta::AuthUserUpdateRequest.new(
  password: null,
  active: null,
  roles: null
)