Show / Hide Table of Contents

Class CostToMigrate

Summary of costs to migrate.

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

Properties

AssetCount

Declaration
[JsonProperty(PropertyName = "assetCount")]
public int? AssetCount { get; set; }
Property Value
Type Description
int?

Number of assets used in this calculation.

CurrencyCode

Declaration
[JsonProperty(PropertyName = "currencyCode")]
public string CurrencyCode { get; set; }
Property Value
Type Description
string

Currency code as defined by ISO-4217.

OciDataTransferCosts

Declaration
[JsonProperty(PropertyName = "ociDataTransferCosts")]
public decimal? OciDataTransferCosts { get; set; }
Property Value
Type Description
decimal?

Data transfer costs from OCI.

SourceDataTransferCosts

Declaration
[JsonProperty(PropertyName = "sourceDataTransferCosts")]
public decimal? SourceDataTransferCosts { get; set; }
Property Value
Type Description
decimal?

Data transfer costs from source cloud provider.

In this article
Back to top