Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.99 KB

File metadata and controls

134 lines (73 loc) · 3.99 KB

PFGenerateQuoteResponse

Properties

Name Type Description Notes
IsSuccess Pointer to bool Indicates if the quote generation was successful. [optional]
Message Pointer to string A message related to the quote generation. [optional]
IntegrationID Pointer to string The integration ID associated with the quote generation. [optional]
Item Pointer to PFGenerateQuoteResponseItem [optional]

Methods

NewPFGenerateQuoteResponse

func NewPFGenerateQuoteResponse() *PFGenerateQuoteResponse

NewPFGenerateQuoteResponse instantiates a new PFGenerateQuoteResponse 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

NewPFGenerateQuoteResponseWithDefaults

func NewPFGenerateQuoteResponseWithDefaults() *PFGenerateQuoteResponse

NewPFGenerateQuoteResponseWithDefaults instantiates a new PFGenerateQuoteResponse 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

GetIsSuccess

func (o *PFGenerateQuoteResponse) GetIsSuccess() bool

GetIsSuccess returns the IsSuccess field if non-nil, zero value otherwise.

GetIsSuccessOk

func (o *PFGenerateQuoteResponse) GetIsSuccessOk() (*bool, bool)

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

SetIsSuccess

func (o *PFGenerateQuoteResponse) SetIsSuccess(v bool)

SetIsSuccess sets IsSuccess field to given value.

HasIsSuccess

func (o *PFGenerateQuoteResponse) HasIsSuccess() bool

HasIsSuccess returns a boolean if a field has been set.

GetMessage

func (o *PFGenerateQuoteResponse) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

func (o *PFGenerateQuoteResponse) GetMessageOk() (*string, bool)

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

SetMessage

func (o *PFGenerateQuoteResponse) SetMessage(v string)

SetMessage sets Message field to given value.

HasMessage

func (o *PFGenerateQuoteResponse) HasMessage() bool

HasMessage returns a boolean if a field has been set.

GetIntegrationID

func (o *PFGenerateQuoteResponse) GetIntegrationID() string

GetIntegrationID returns the IntegrationID field if non-nil, zero value otherwise.

GetIntegrationIDOk

func (o *PFGenerateQuoteResponse) GetIntegrationIDOk() (*string, bool)

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

SetIntegrationID

func (o *PFGenerateQuoteResponse) SetIntegrationID(v string)

SetIntegrationID sets IntegrationID field to given value.

HasIntegrationID

func (o *PFGenerateQuoteResponse) HasIntegrationID() bool

HasIntegrationID returns a boolean if a field has been set.

GetItem

func (o *PFGenerateQuoteResponse) GetItem() PFGenerateQuoteResponseItem

GetItem returns the Item field if non-nil, zero value otherwise.

GetItemOk

func (o *PFGenerateQuoteResponse) GetItemOk() (*PFGenerateQuoteResponseItem, bool)

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

SetItem

func (o *PFGenerateQuoteResponse) SetItem(v PFGenerateQuoteResponseItem)

SetItem sets Item field to given value.

HasItem

func (o *PFGenerateQuoteResponse) HasItem() bool

HasItem returns a boolean if a field has been set.

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