Skip to content

Commit

Permalink
Automated commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
maxio-sdk committed Jun 5, 2024
1 parent 3d40ad0 commit b543d60
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/models/customer.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
| `lastName` | `?string` | Optional | The last name of the customer | getLastName(): ?string | setLastName(?string lastName): void |
| `email` | `?string` | Optional | The email address of the customer | getEmail(): ?string | setEmail(?string email): void |
| `ccEmails` | `?string` | Optional | A comma-separated list of emails that should be cc’d on all customer communications (i.e. “joe@example.com, sue@example.com”) | getCcEmails(): ?string | setCcEmails(?string ccEmails): void |
| `organization` | `?string` | Optional | The organization of the customer | getOrganization(): ?string | setOrganization(?string organization): void |
| `organization` | `?string` | Optional | The organization of the customer. If no value, `null` or empty string is provided, `organization` will be populated with the customer's first and last name, separated with a space. | getOrganization(): ?string | setOrganization(?string organization): void |
| `reference` | `?string` | Optional | The unique identifier used within your own application for this customer | getReference(): ?string | setReference(?string reference): void |
| `id` | `?int` | Optional | The customer ID in Chargify | getId(): ?int | setId(?int id): void |
| `createdAt` | `?DateTime` | Optional | The timestamp in which the customer object was created in Chargify | getCreatedAt(): ?\DateTime | setCreatedAt(?\DateTime createdAt): void |
Expand Down
9 changes: 6 additions & 3 deletions src/Models/Customer.php
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,8 @@ public function unsetCcEmails(): void

/**
* Returns Organization.
* The organization of the customer
* The organization of the customer. If no value, `null` or empty string is provided, `organization`
* will be populated with the customer's first and last name, separated with a space.
*/
public function getOrganization(): ?string
{
Expand All @@ -259,7 +260,8 @@ public function getOrganization(): ?string

/**
* Sets Organization.
* The organization of the customer
* The organization of the customer. If no value, `null` or empty string is provided, `organization`
* will be populated with the customer's first and last name, separated with a space.
*
* @maps organization
*/
Expand All @@ -270,7 +272,8 @@ public function setOrganization(?string $organization): void

/**
* Unsets Organization.
* The organization of the customer
* The organization of the customer. If no value, `null` or empty string is provided, `organization`
* will be populated with the customer's first and last name, separated with a space.
*/
public function unsetOrganization(): void
{
Expand Down

0 comments on commit b543d60

Please sign in to comment.