feat: shit shit

This commit is contained in:
2025-08-15 11:10:28 +03:00
parent 0c86228095
commit 38acc4a443
1402 changed files with 453050 additions and 111 deletions

View File

@@ -0,0 +1,155 @@
# OrderBuyerDTO
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **string** | Идентификатор покупателя. | [optional]
**LastName** | Pointer to **string** | Фамилия покупателя. | [optional]
**FirstName** | Pointer to **string** | Имя покупателя. | [optional]
**MiddleName** | Pointer to **string** | Отчество покупателя. | [optional]
**Type** | [**OrderBuyerType**](OrderBuyerType.md) | |
## Methods
### NewOrderBuyerDTO
`func NewOrderBuyerDTO(type_ OrderBuyerType, ) *OrderBuyerDTO`
NewOrderBuyerDTO instantiates a new OrderBuyerDTO 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
### NewOrderBuyerDTOWithDefaults
`func NewOrderBuyerDTOWithDefaults() *OrderBuyerDTO`
NewOrderBuyerDTOWithDefaults instantiates a new OrderBuyerDTO 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
### GetId
`func (o *OrderBuyerDTO) GetId() string`
GetId returns the Id field if non-nil, zero value otherwise.
### GetIdOk
`func (o *OrderBuyerDTO) GetIdOk() (*string, bool)`
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetId
`func (o *OrderBuyerDTO) SetId(v string)`
SetId sets Id field to given value.
### HasId
`func (o *OrderBuyerDTO) HasId() bool`
HasId returns a boolean if a field has been set.
### GetLastName
`func (o *OrderBuyerDTO) GetLastName() string`
GetLastName returns the LastName field if non-nil, zero value otherwise.
### GetLastNameOk
`func (o *OrderBuyerDTO) GetLastNameOk() (*string, bool)`
GetLastNameOk returns a tuple with the LastName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetLastName
`func (o *OrderBuyerDTO) SetLastName(v string)`
SetLastName sets LastName field to given value.
### HasLastName
`func (o *OrderBuyerDTO) HasLastName() bool`
HasLastName returns a boolean if a field has been set.
### GetFirstName
`func (o *OrderBuyerDTO) GetFirstName() string`
GetFirstName returns the FirstName field if non-nil, zero value otherwise.
### GetFirstNameOk
`func (o *OrderBuyerDTO) GetFirstNameOk() (*string, bool)`
GetFirstNameOk returns a tuple with the FirstName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetFirstName
`func (o *OrderBuyerDTO) SetFirstName(v string)`
SetFirstName sets FirstName field to given value.
### HasFirstName
`func (o *OrderBuyerDTO) HasFirstName() bool`
HasFirstName returns a boolean if a field has been set.
### GetMiddleName
`func (o *OrderBuyerDTO) GetMiddleName() string`
GetMiddleName returns the MiddleName field if non-nil, zero value otherwise.
### GetMiddleNameOk
`func (o *OrderBuyerDTO) GetMiddleNameOk() (*string, bool)`
GetMiddleNameOk returns a tuple with the MiddleName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetMiddleName
`func (o *OrderBuyerDTO) SetMiddleName(v string)`
SetMiddleName sets MiddleName field to given value.
### HasMiddleName
`func (o *OrderBuyerDTO) HasMiddleName() bool`
HasMiddleName returns a boolean if a field has been set.
### GetType
`func (o *OrderBuyerDTO) GetType() OrderBuyerType`
GetType returns the Type field if non-nil, zero value otherwise.
### GetTypeOk
`func (o *OrderBuyerDTO) GetTypeOk() (*OrderBuyerType, bool)`
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetType
`func (o *OrderBuyerDTO) SetType(v OrderBuyerType)`
SetType sets Type field to given value.
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)