Show / Hide Table of Contents

Class ResourceBundle

Resource Bundle associated with an Offer

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

Properties

Quantity

Declaration
[JsonProperty(PropertyName = "quantity")]
public long? Quantity { get; set; }
Property Value
Type Description
long?

The quantity of a resources associated with the bundle

ResourceIds

Declaration
[JsonProperty(PropertyName = "resourceIds")]
public List<string> ResourceIds { get; set; }
Property Value
Type Description
List<string>

the ids of the resources in the Offer

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ResourceBundle.TypeEnum? Type { get; set; }
Property Value
Type Description
ResourceBundle.TypeEnum?

The type of resources in the bundle

UnitOfMeasurement

Declaration
[JsonProperty(PropertyName = "unitOfMeasurement")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ResourceBundle.UnitOfMeasurementEnum? UnitOfMeasurement { get; set; }
Property Value
Type Description
ResourceBundle.UnitOfMeasurementEnum?

The unit of measurement for the resource bundle

In this article
Back to top