Table of Contents

Class LaunderingOperation

Namespace
S1API.Property
Assembly
S1API.dll

Represents a laundering operation associated with a business property.

public class LaunderingOperation
Inheritance
LaunderingOperation
Inherited Members
Extension Methods

Constructors

LaunderingOperation(BusinessWrapper, float, int, int)

Initializes a new instance of the LaunderingOperation class with the specified business, amount, minutes since started, and optional completion time.

public LaunderingOperation(BusinessWrapper business, float amount, int minutesSinceStarted, int completionTimeInMinutes = 1140)

Parameters

business BusinessWrapper

The business associated with the laundering operation.

amount float

The amount of money to be laundered.

minutesSinceStarted int

The number of minutes since the laundering operation started.

completionTimeInMinutes int

The total time in minutes required to complete the laundering operation. Default is 1140 minutes.

LaunderingOperation(LaunderingOperation)

A wrapper class that acts as a bridge to interact with an inner laundering operation implementation from the Il2CppScheduleOne.Property namespace.

public LaunderingOperation(LaunderingOperation launderingOperation)

Parameters

launderingOperation LaunderingOperation

Properties

Amount

Gets or sets the amount of money to be laundered in this operation.

public float Amount { get; set; }

Property Value

float

Business

Gets or sets the business associated with the laundering operation.

public BusinessWrapper Business { get; set; }

Property Value

BusinessWrapper

CompletionTimeInMinutes

Gets or sets the total time in minutes required to complete the laundering operation.

public int CompletionTimeInMinutes { get; set; }

Property Value

int

MinutesSinceStarted

Gets or sets the number of minutes that have passed since the laundering operation started.

public int MinutesSinceStarted { get; set; }

Property Value

int