Show / Hide Table of Contents

Class PackageInfoOccurrence

PackageInfoOccurrence represents an SPDX Package Information section: https://spdx.github.io/spdx-spec/3-package-information/

Inheritance
System.Object
PackageInfoOccurrence
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ContainerAnalysis.v1beta1.Data
Assembly: Google.Apis.ContainerAnalysis.v1beta1.dll
Syntax
public class PackageInfoOccurrence : IDirectResponseSchema

Properties

Comment

A place for the SPDX file creator to record any general comments about the package being described

Declaration
[JsonProperty("comment")]
public virtual string Comment { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Filename

Provide the actual file name of the package, or path of the directory being treated as a package

Declaration
[JsonProperty("filename")]
public virtual string Filename { get; set; }
Property Value
Type Description
System.String

HomePage

Output only. Provide a place for the SPDX file creator to record a web site that serves as the package's home page

Declaration
[JsonProperty("homePage")]
public virtual string HomePage { get; set; }
Property Value
Type Description
System.String

Id

Uniquely identify any element in an SPDX document which may be referenced by other elements

Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type Description
System.String

LicenseConcluded

package or alternative values, if the governing license cannot be determined

Declaration
[JsonProperty("licenseConcluded")]
public virtual License LicenseConcluded { get; set; }
Property Value
Type Description
License

PackageType

Output only. The type of package: OS, MAVEN, GO, GO_STDLIB, etc.

Declaration
[JsonProperty("packageType")]
public virtual string PackageType { get; set; }
Property Value
Type Description
System.String

SourceInfo

Provide a place for the SPDX file creator to record any relevant background information or additional comments about the origin of the package

Declaration
[JsonProperty("sourceInfo")]
public virtual string SourceInfo { get; set; }
Property Value
Type Description
System.String

SummaryDescription

Output only. A short description of the package

Declaration
[JsonProperty("summaryDescription")]
public virtual string SummaryDescription { get; set; }
Property Value
Type Description
System.String

Title

Output only. Identify the full name of the package as given by the Package Originator

Declaration
[JsonProperty("title")]
public virtual string Title { get; set; }
Property Value
Type Description
System.String

Version

Output only. Identify the version of the package

Declaration
[JsonProperty("version")]
public virtual string Version { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top