Class FileLineDetails
Object containing the details of a line in a file.
Inherited Members
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class FileLineDetails
Properties
LineContent
Declaration
[Required(ErrorMessage = "LineContent is required.")]
[JsonProperty(PropertyName = "lineContent")]
public string LineContent { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The content of the line. |
Remarks
Required
LineNumber
Declaration
[Required(ErrorMessage = "LineNumber is required.")]
[JsonProperty(PropertyName = "lineNumber")]
public int? LineNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The line number. |
Remarks
Required