Class PostUser
PostUser
Inheritance
System.Object
PostUser
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class PostUser : IEquatable<PostUser>
Constructors
PostUser()
Initializes a new instance of the PostUser class.
Declaration
protected PostUser()
PostUser(String, String, Nullable<PostUser.StatusEnum>)
Initializes a new instance of the PostUser class.
Declaration
public PostUser(string oauthID = null, string name = null, PostUser.StatusEnum? status = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | oauthID | oauthID. |
System.String | name | name (required). |
System.Nullable<PostUser.StatusEnum> | status | If inactive the user is inactive. (default to StatusEnum.Active). |
Properties
Id
Gets or Sets Id
Declaration
public string Id { get; }
Property Value
Type | Description |
---|---|
System.String |
Name
Gets or Sets Name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OauthID
Gets or Sets OauthID
Declaration
public string OauthID { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Status
If inactive the user is inactive.
Declaration
public PostUser.StatusEnum? Status { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<PostUser.StatusEnum> | If inactive the user is inactive. |
Methods
Equals(PostUser)
Returns true if PostUser instances are equal
Declaration
public bool Equals(PostUser input)
Parameters
Type | Name | Description |
---|---|---|
PostUser | input | Instance of PostUser to be compared |
Returns
Type | Description |
---|---|
System.Boolean | Boolean |
Equals(Object)
Returns true if objects are equal
Declaration
public override bool Equals(object input)
Parameters
Type | Name | Description |
---|---|---|
System.Object | input | Object to be compared |
Returns
Type | Description |
---|---|
System.Boolean | Boolean |
GetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | Hash code |
ToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
System.String | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | String presentation of the object |