Skip to content

Commit

Permalink
adding field changes for cycle o
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkaspa committed Oct 27, 2023
1 parent 2e5dcd9 commit cadf6a5
Show file tree
Hide file tree
Showing 176 changed files with 1,543 additions and 178 deletions.
Binary file added .DS_Store
Binary file not shown.
Empty file modified docs/Address.md
100755 → 100644
Empty file.
Empty file modified docs/AddressDeletion.md
100755 → 100644
Empty file.
Empty file modified docs/AddressDomestic.md
100755 → 100644
Empty file.
Empty file modified docs/AddressDomesticExpanded.md
100755 → 100644
Empty file.
Empty file modified docs/AddressEditable.md
100755 → 100644
Empty file.
Empty file modified docs/AddressList.md
100755 → 100644
Empty file.
Empty file modified docs/AddressesApi.md
100755 → 100644
Empty file.
Empty file modified docs/BankAccount.md
100755 → 100644
Empty file.
Empty file modified docs/BankAccountDeletion.md
100755 → 100644
Empty file.
Empty file modified docs/BankAccountList.md
100755 → 100644
Empty file.
Empty file modified docs/BankAccountVerify.md
100755 → 100644
Empty file.
Empty file modified docs/BankAccountWritable.md
100755 → 100644
Empty file.
Empty file modified docs/BankAccountsApi.md
100755 → 100644
Empty file.
Empty file modified docs/BankTypeEnum.md
100755 → 100644
Empty file.
Empty file modified docs/BillingGroup.md
100755 → 100644
Empty file.
Empty file modified docs/BillingGroupEditable.md
100755 → 100644
Empty file.
Empty file modified docs/BillingGroupList.md
100755 → 100644
Empty file.
Empty file modified docs/BillingGroupsApi.md
100755 → 100644
Empty file.
Empty file modified docs/Buckslip.md
100755 → 100644
Empty file.
Empty file modified docs/BuckslipDeletion.md
100755 → 100644
Empty file.
Empty file modified docs/BuckslipEditable.md
100755 → 100644
Empty file.
Empty file modified docs/BuckslipOrder.md
100755 → 100644
Empty file.
Empty file modified docs/BuckslipOrderEditable.md
100755 → 100644
Empty file.
Empty file modified docs/BuckslipOrdersApi.md
100755 → 100644
Empty file.
Empty file modified docs/BuckslipOrdersList.md
100755 → 100644
Empty file.
Empty file modified docs/BuckslipUpdatable.md
100755 → 100644
Empty file.
6 changes: 4 additions & 2 deletions docs/BuckslipsApi.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Method | HTTP request | Description

## BuckslipCreate

> Buckslip Create(ctx).BuckslipEditable(buckslipEditable).Execute()
> Buckslip Create(ctx).BuckslipEditable(buckslipEditable).Front(front).Execute()
create

Expand All @@ -34,10 +34,11 @@ import (

func main() {
buckslipEditable := *openapiclient.NewBuckslipEditable("Front_example") // BuckslipEditable |
front := TODO // map[string]interface{} | An optional file upload as either a byte array or file type. (optional)

configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
resp, r, err := apiClient.BuckslipsApi.Create(context.Background()).BuckslipEditable(buckslipEditable).Execute()
resp, r, err := apiClient.BuckslipsApi.Create(context.Background()).BuckslipEditable(buckslipEditable).Front(front).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `BuckslipsApi.Create``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
Expand All @@ -59,6 +60,7 @@ Other parameters are passed through a pointer to a apiBuckslipCreateRequest stru
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**buckslipEditable** | [**BuckslipEditable**](BuckslipEditable.md) | |
**front** | [**map[string]interface{}**](map[string]interface{}.md) | An optional file upload as either a byte array or file type. |

### Return type

Expand Down
Empty file modified docs/BuckslipsList.md
100755 → 100644
Empty file.
Empty file modified docs/BulkError.md
100755 → 100644
Empty file.
Empty file modified docs/BulkErrorProperties.md
100755 → 100644
Empty file.
9 changes: 2 additions & 7 deletions docs/Campaign.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Name | Type | Description | Notes
**SendDate** | Pointer to **NullableTime** | If `schedule_type` is `scheduled_send_date`, provide a date to send this campaign. | [optional]
**CancelWindowCampaignMinutes** | Pointer to **NullableInt32** | A window, in minutes, within which the campaign can be canceled. | [optional]
**Metadata** | Pointer to **map[string]string** | Use metadata to store custom information for tagging and labeling back to your internal systems. Must be an object with up to 20 key-value pairs. Keys must be at most 40 characters and values must be at most 500 characters. Neither can contain the characters `\"` and `\\`. i.e. '{\"customer_id\" : \"NEWYORK2015\"}' Nested objects are not supported. See [Metadata](#section/Metadata) for more information. | [optional]
**UseType** | Pointer to [**NullableCmpUseType**](CmpUseType.md) | | [optional]
**UseType** | [**NullableCmpUseType**](CmpUseType.md) | |
**AutoCancelIfNcoa** | **bool** | Whether or not a mail piece should be automatically canceled and not sent if the address is updated via NCOA. |
**Id** | **string** | Unique identifier prefixed with `cmp_`. |
**AccountId** | Pointer to **string** | Account ID that this campaign is associated with. | [optional]
Expand All @@ -27,7 +27,7 @@ Name | Type | Description | Notes

### NewCampaign

`func NewCampaign(name string, scheduleType CmpScheduleType, autoCancelIfNcoa bool, id string, isDraft bool, creatives []CampaignCreative, dateCreated time.Time, dateModified time.Time, object string, ) *Campaign`
`func NewCampaign(name string, scheduleType CmpScheduleType, useType NullableCmpUseType, autoCancelIfNcoa bool, id string, isDraft bool, creatives []CampaignCreative, dateCreated time.Time, dateModified time.Time, object string, ) *Campaign`

NewCampaign instantiates a new Campaign object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -301,11 +301,6 @@ and a boolean to check if the value has been set.

SetUseType sets UseType field to given value.

### HasUseType

`func (o *Campaign) HasUseType() bool`

HasUseType returns a boolean if a field has been set.

### SetUseTypeNil

Expand Down
Empty file modified docs/CampaignCreative.md
100755 → 100644
Empty file.
Empty file modified docs/CampaignDeletion.md
100755 → 100644
Empty file.
Empty file modified docs/CampaignUpdatable.md
100755 → 100644
Empty file.
9 changes: 2 additions & 7 deletions docs/CampaignWritable.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Name | Type | Description | Notes
**SendDate** | Pointer to **NullableTime** | If `schedule_type` is `scheduled_send_date`, provide a date to send this campaign. | [optional]
**CancelWindowCampaignMinutes** | Pointer to **NullableInt32** | A window, in minutes, within which the campaign can be canceled. | [optional]
**Metadata** | Pointer to **map[string]string** | Use metadata to store custom information for tagging and labeling back to your internal systems. Must be an object with up to 20 key-value pairs. Keys must be at most 40 characters and values must be at most 500 characters. Neither can contain the characters `\"` and `\\`. i.e. '{\"customer_id\" : \"NEWYORK2015\"}' Nested objects are not supported. See [Metadata](#section/Metadata) for more information. | [optional]
**UseType** | Pointer to [**NullableCmpUseType**](CmpUseType.md) | | [optional]
**UseType** | [**NullableCmpUseType**](CmpUseType.md) | |
**AutoCancelIfNcoa** | Pointer to **bool** | Whether or not a mail piece should be automatically canceled and not sent if the address is updated via NCOA. | [optional]

## Methods

### NewCampaignWritable

`func NewCampaignWritable(name string, scheduleType CmpScheduleType, ) *CampaignWritable`
`func NewCampaignWritable(name string, scheduleType CmpScheduleType, useType NullableCmpUseType, ) *CampaignWritable`

NewCampaignWritable instantiates a new CampaignWritable object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -293,11 +293,6 @@ and a boolean to check if the value has been set.

SetUseType sets UseType field to given value.

### HasUseType

`func (o *CampaignWritable) HasUseType() bool`

HasUseType returns a boolean if a field has been set.

### SetUseTypeNil

Expand Down
2 changes: 1 addition & 1 deletion docs/CampaignsApi.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
)

func main() {
campaignWritable := *openapiclient.NewCampaignWritable("Name_example", openapiclient.cmp_schedule_type("immediate")) // CampaignWritable |
campaignWritable := *openapiclient.NewCampaignWritable("Name_example", openapiclient.cmp_schedule_type("immediate"), "TODO") // CampaignWritable |
xLangOutput := "xLangOutput_example" // string | * `native` - Translate response to the native language of the country in the request * `match` - match the response to the language in the request Default response is in English. (optional)

configuration := openapiclient.NewConfiguration()
Expand Down
Empty file modified docs/CampaignsList.md
100755 → 100644
Empty file.
Empty file modified docs/Card.md
100755 → 100644
Empty file.
Empty file modified docs/CardDeletion.md
100755 → 100644
Empty file.
Empty file modified docs/CardEditable.md
100755 → 100644
Empty file.
Empty file modified docs/CardList.md
100755 → 100644
Empty file.
Empty file modified docs/CardOrder.md
100755 → 100644
Empty file.
Empty file modified docs/CardOrderEditable.md
100755 → 100644
Empty file.
Empty file modified docs/CardOrderList.md
100755 → 100644
Empty file.
Empty file modified docs/CardOrdersApi.md
100755 → 100644
Empty file.
Empty file modified docs/CardUpdatable.md
100755 → 100644
Empty file.
Empty file modified docs/CardsApi.md
100755 → 100644
Empty file.
33 changes: 32 additions & 1 deletion docs/Check.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@ Name | Type | Description | Notes
**DateCreated** | **time.Time** | A timestamp in ISO 8601 format of the date the resource was created. |
**DateModified** | **time.Time** | A timestamp in ISO 8601 format of the date the resource was last modified. |
**Deleted** | Pointer to **bool** | Only returned if the resource has been successfully deleted. | [optional]
**UseType** | [**NullableChkUseType**](ChkUseType.md) | |

## Methods

### NewCheck

`func NewCheck(id string, to Address, amount float32, bankAccount BankAccount, url string, carrier string, object string, dateCreated time.Time, dateModified time.Time, ) *Check`
`func NewCheck(id string, to Address, amount float32, bankAccount BankAccount, url string, carrier string, object string, dateCreated time.Time, dateModified time.Time, useType NullableChkUseType, ) *Check`

NewCheck instantiates a new Check object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -695,6 +696,36 @@ SetDeleted sets Deleted field to given value.

HasDeleted returns a boolean if a field has been set.

### GetUseType

`func (o *Check) GetUseType() ChkUseType`

GetUseType returns the UseType field if non-nil, zero value otherwise.

### GetUseTypeOk

`func (o *Check) GetUseTypeOk() (*ChkUseType, bool)`

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

### SetUseType

`func (o *Check) SetUseType(v ChkUseType)`

SetUseType sets UseType field to given value.


### SetUseTypeNil

`func (o *Check) SetUseTypeNil(b bool)`

SetUseTypeNil sets the value for UseType to be an explicit nil

### UnsetUseType
`func (o *Check) UnsetUseType()`

UnsetUseType ensures that no value is present for UseType, not even an explicit nil

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
Empty file modified docs/CheckDeletion.md
100755 → 100644
Empty file.
33 changes: 32 additions & 1 deletion docs/CheckEditable.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,13 @@ Name | Type | Description | Notes
**CheckNumber** | Pointer to **int32** | An integer that designates the check number. | [optional]
**Message** | Pointer to **string** | Max of 400 characters to be included at the bottom of the check page. | [optional]
**BillingGroupId** | Pointer to **string** | An optional string with the billing group ID to tag your usage with. Is used for billing purposes. Requires special activation to use. See [Billing Group API](https://lob.github.io/lob-openapi/#tag/Billing-Groups) for more information. | [optional]
**UseType** | [**NullableChkUseType**](ChkUseType.md) | |

## Methods

### NewCheckEditable

`func NewCheckEditable(from interface{}, to interface{}, bankAccount NullableString, amount float32, ) *CheckEditable`
`func NewCheckEditable(from interface{}, to interface{}, bankAccount NullableString, amount float32, useType NullableChkUseType, ) *CheckEditable`

NewCheckEditable instantiates a new CheckEditable object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -480,6 +481,36 @@ SetBillingGroupId sets BillingGroupId field to given value.

HasBillingGroupId returns a boolean if a field has been set.

### GetUseType

`func (o *CheckEditable) GetUseType() ChkUseType`

GetUseType returns the UseType field if non-nil, zero value otherwise.

### GetUseTypeOk

`func (o *CheckEditable) GetUseTypeOk() (*ChkUseType, bool)`

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

### SetUseType

`func (o *CheckEditable) SetUseType(v ChkUseType)`

SetUseType sets UseType field to given value.


### SetUseTypeNil

`func (o *CheckEditable) SetUseTypeNil(b bool)`

SetUseTypeNil sets the value for UseType to be an explicit nil

### UnsetUseType
`func (o *CheckEditable) UnsetUseType()`

UnsetUseType ensures that no value is present for UseType, not even an explicit nil

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
Empty file modified docs/CheckList.md
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion docs/ChecksApi.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ import (
)

func main() {
checkEditable := *openapiclient.NewCheckEditable(interface{}(123), interface{}(123), "BankAccount_example", float32(123)) // CheckEditable |
checkEditable := *openapiclient.NewCheckEditable(interface{}(123), interface{}(123), "BankAccount_example", float32(123), "TODO") // CheckEditable |
idempotencyKey := "idempotencyKey_example" // string | A string of no longer than 256 characters that uniquely identifies this resource. For more help integrating idempotency keys, refer to our [implementation guide](https://www.lob.com/guides#idempotent_request). (optional)

configuration := openapiclient.NewConfiguration()
Expand Down
15 changes: 15 additions & 0 deletions docs/ChkUseType.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ChkUseType

## Enum


* `MARKETING` (value: `"marketing"`)

* `OPERATIONAL` (value: `"operational"`)

* `NULL` (value: `"null"`)


[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


Empty file modified docs/CmpScheduleType.md
100755 → 100644
Empty file.
Empty file modified docs/CmpUseType.md
100755 → 100644
Empty file.
2 changes: 2 additions & 0 deletions docs/CountryExtended.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
## Enum


* `EMPTY` (value: `""`)

* `AD` (value: `"AD"`)

* `AE` (value: `"AE"`)
Expand Down
Empty file modified docs/CountryExtendedExpanded.md
100755 → 100644
Empty file.
Empty file modified docs/CreativePatch.md
100755 → 100644
Empty file.
Empty file modified docs/CreativeResponse.md
100755 → 100644
Empty file.
Empty file modified docs/CreativeWritable.md
100755 → 100644
Empty file.
Empty file modified docs/CreativesApi.md
100755 → 100644
Empty file.
Empty file modified docs/CustomEnvelopeReturned.md
100755 → 100644
Empty file.
Empty file modified docs/DefaultApi.md
100755 → 100644
Empty file.
Loading

0 comments on commit cadf6a5

Please sign in to comment.