Show / Hide Table of Contents

Class LimitAndUsage

The limit and usage for a specific environment type, for example, production, development, or test.

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

Properties

Limit

Declaration
[Required(ErrorMessage = "Limit is required.")]
[JsonProperty(PropertyName = "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The limit of current environment.

Remarks

Required

Usage

Declaration
[Required(ErrorMessage = "Usage is required.")]
[JsonProperty(PropertyName = "usage")]
public int? Usage { get; set; }
Property Value
Type Description
int?

The usage of current environment.

Remarks

Required

In this article
Back to top