Class ScraperTargetResponse
ScraperTargetResponse
Implements
IEquatable<ScraperTargetResponse>
Inherited Members
Namespace: InfluxDB.Client.Api.Domain
Assembly: InfluxDB.Client.dll
Syntax
public class ScraperTargetResponse : ScraperTargetRequest, IEquatable<ScraperTargetResponse>
Constructors
ScraperTargetResponse(String, String, ScraperTargetResponseLinks, String, Nullable<ScraperTargetRequest.TypeEnum>, String, String, String, Nullable<Boolean>)
Initializes a new instance of the ScraperTargetResponse class.
Declaration
public ScraperTargetResponse(string org = null, string bucket = null, ScraperTargetResponseLinks links = null, string name = null, ScraperTargetRequest.TypeEnum? type = null, string url = null, string orgID = null, string bucketID = null, bool? allowInsecure)
Parameters
Type | Name | Description |
---|---|---|
System.String | org | The name of the organization.. |
System.String | bucket | The bucket name.. |
ScraperTargetResponseLinks | links | links. |
System.String | name | |
System.Nullable<ScraperTargetRequest.TypeEnum> | type | |
System.String | url | |
System.String | orgID | |
System.String | bucketID | |
System.Nullable<System.Boolean> | allowInsecure |
Properties
Bucket
The bucket name.
Declaration
public string Bucket { get; set; }
Property Value
Type | Description |
---|---|
System.String | The bucket name. |
Id
Gets or Sets Id
Declaration
public string Id { get; }
Property Value
Type | Description |
---|---|
System.String |
Links
Gets or Sets Links
Declaration
public ScraperTargetResponseLinks Links { get; set; }
Property Value
Type | Description |
---|---|
ScraperTargetResponseLinks |
Org
The name of the organization.
Declaration
public string Org { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the organization. |
Methods
Equals(ScraperTargetResponse)
Returns true if ScraperTargetResponse instances are equal
Declaration
public bool Equals(ScraperTargetResponse input)
Parameters
Type | Name | Description |
---|---|---|
ScraperTargetResponse | input | Instance of ScraperTargetResponse 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 |
Overrides
GetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 | Hash code |
Overrides
ToJson()
Returns the JSON string presentation of the object
Declaration
public override string ToJson()
Returns
Type | Description |
---|---|
System.String | JSON string presentation of the object |
Overrides
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | String presentation of the object |
Overrides
Implements
IEquatable<>