Files
openapi-go-answer/docs/SchemaUpdateUserPasswordReq.md
2023-08-18 10:03:31 +08:00

2.2 KiB

SchemaUpdateUserPasswordReq

Properties

Name Type Description Notes
Password string
UserId string

Methods

NewSchemaUpdateUserPasswordReq

func NewSchemaUpdateUserPasswordReq(password string, userId string, ) *SchemaUpdateUserPasswordReq

NewSchemaUpdateUserPasswordReq instantiates a new SchemaUpdateUserPasswordReq object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewSchemaUpdateUserPasswordReqWithDefaults

func NewSchemaUpdateUserPasswordReqWithDefaults() *SchemaUpdateUserPasswordReq

NewSchemaUpdateUserPasswordReqWithDefaults instantiates a new SchemaUpdateUserPasswordReq object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetPassword

func (o *SchemaUpdateUserPasswordReq) GetPassword() string

GetPassword returns the Password field if non-nil, zero value otherwise.

GetPasswordOk

func (o *SchemaUpdateUserPasswordReq) GetPasswordOk() (*string, bool)

GetPasswordOk returns a tuple with the Password field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPassword

func (o *SchemaUpdateUserPasswordReq) SetPassword(v string)

SetPassword sets Password field to given value.

GetUserId

func (o *SchemaUpdateUserPasswordReq) GetUserId() string

GetUserId returns the UserId field if non-nil, zero value otherwise.

GetUserIdOk

func (o *SchemaUpdateUserPasswordReq) GetUserIdOk() (*string, bool)

GetUserIdOk returns a tuple with the UserId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetUserId

func (o *SchemaUpdateUserPasswordReq) SetUserId(v string)

SetUserId sets UserId field to given value.

[Back to Model list] [Back to API list] [Back to README]