Class VendingMachineMarker
- Namespace
- RustPlusApi.Data.Markers
- Assembly
- RustPlusApi.dll
Map marker for a vending machine, including its current sell orders.
public sealed record VendingMachineMarker : Marker, IEquatable<Marker>, IEquatable<VendingMachineMarker>
- Inheritance
-
VendingMachineMarker
- Implements
- Inherited Members
Properties
IsOutOfStock
true if the vending machine has no stock remaining.
public bool? IsOutOfStock { get; init; }
Property Value
- bool?
Name
Name of the vending machine (set by its owner).
public string? Name { get; init; }
Property Value
VendingMachineItems
Active sell orders in the vending machine.
public IEnumerable<VendingMachineItem>? VendingMachineItems { get; init; }