Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Sep 20, 2024
1 parent d81a5f0 commit a577974
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions rippling/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8745,10 +8745,10 @@ pub struct User {
pub phone_numbers: Option<Vec<UserPhoneNumber>>,
#[doc = "The user's addresses."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub addresses: Option<UserAddress>,
pub addresses: Option<Vec<UserAddress>>,
#[doc = "The user's photos."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub photos: Option<UserPhoto>,
pub photos: Option<Vec<UserPhoto>>,
#[doc = "The User's preferred written or spoken language in the same format of the HTTP \
Accept-Language header, pursuant to Section 5.3.5 of RFC7231."]
#[serde(default, skip_serializing_if = "Option::is_none")]
Expand Down Expand Up @@ -15461,10 +15461,10 @@ pub struct GetUsersResponse {
pub phone_numbers: Option<Vec<UserPhoneNumber>>,
#[doc = "The user's addresses."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub addresses: Option<UserAddress>,
pub addresses: Option<Vec<UserAddress>>,
#[doc = "The user's photos."]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub photos: Option<UserPhoto>,
pub photos: Option<Vec<UserPhoto>>,
#[doc = "The User's preferred written or spoken language in the same format of the HTTP \
Accept-Language header, pursuant to Section 5.3.5 of RFC7231."]
#[serde(default, skip_serializing_if = "Option::is_none")]
Expand Down
12 changes: 6 additions & 6 deletions specs/rippling-beta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4134,15 +4134,15 @@ components:
$ref: '#/components/schemas/UserPhoneNumber'
description: The user's phone numbers.
addresses:
type: object
type: array
items:
$ref: '#/components/schemas/UserAddress'
description: The user's addresses.
allOf:
- $ref: '#/components/schemas/UserAddress'
photos:
type: object
type: array
items:
$ref: '#/components/schemas/UserPhoto'
description: The user's photos.
allOf:
- $ref: '#/components/schemas/UserPhoto'
preferred_language:
type: string
description: The User's preferred written or spoken language in the same
Expand Down

0 comments on commit a577974

Please sign in to comment.