spacetraders/docs/Extraction.md

2.0 KiB

Extraction

Properties

Name Type Description Notes
ShipSymbol string
Yield ExtractionYield

Methods

NewExtraction

func NewExtraction(shipSymbol string, yield ExtractionYield, ) *Extraction

NewExtraction instantiates a new Extraction object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewExtractionWithDefaults

func NewExtractionWithDefaults() *Extraction

NewExtractionWithDefaults instantiates a new Extraction object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetShipSymbol

func (o *Extraction) GetShipSymbol() string

GetShipSymbol returns the ShipSymbol field if non-nil, zero value otherwise.

GetShipSymbolOk

func (o *Extraction) GetShipSymbolOk() (*string, bool)

GetShipSymbolOk returns a tuple with the ShipSymbol field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetShipSymbol

func (o *Extraction) SetShipSymbol(v string)

SetShipSymbol sets ShipSymbol field to given value.

GetYield

func (o *Extraction) GetYield() ExtractionYield

GetYield returns the Yield field if non-nil, zero value otherwise.

GetYieldOk

func (o *Extraction) GetYieldOk() (*ExtractionYield, bool)

GetYieldOk returns a tuple with the Yield field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetYield

func (o *Extraction) SetYield(v ExtractionYield)

SetYield sets Yield field to given value.

[Back to Model list] [Back to API list] [Back to README]