Show / Hide Table of Contents

Class ContainerRepositoryReadme

Container repository readme.

Inheritance
object
ContainerRepositoryReadme
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ArtifactsService.Models
Assembly: OCI.DotNetSDK.Artifacts.dll
Syntax
public class ContainerRepositoryReadme

Properties

Content

Declaration
[Required(ErrorMessage = "Content is required.")]
[JsonProperty(PropertyName = "content")]
public string Content { get; set; }
Property Value
Type Description
string

Readme content. Avoid entering confidential information.

Remarks

Required

Format

Declaration
[Required(ErrorMessage = "Format is required.")]
[JsonProperty(PropertyName = "format")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ContainerRepositoryReadme.FormatEnum? Format { get; set; }
Property Value
Type Description
ContainerRepositoryReadme.FormatEnum?

Readme format. Supported formats are text/plain and text/markdown.

Remarks

Required

In this article
Back to top