Skip to content

Commit

Permalink
fix data mapping issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ThusharaSampath committed Aug 28, 2023
1 parent be2fc64 commit 3c6082a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion openapi/shopify.admin/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2722,7 +2722,9 @@ components:
type: string
description: The latitude of the billing address.
longitude:
type: string
oneOf:
- type: float
- type: string
description: The longitude of the billing address.
name:
type: string
Expand Down
4 changes: 2 additions & 2 deletions openapi/shopify.admin/types.bal
Original file line number Diff line number Diff line change
Expand Up @@ -860,9 +860,9 @@ public type CustomerAddress record {
# The last name of the person associated with the payment method.
string? last_name?;
# The latitude of the billing address.
string? latitude?;
float|string? latitude?;
# The longitude of the billing address.
string? longitude?;
float|string? longitude?;
# The full name of the person associated with the payment method.
string? name?;
# The phone number at the billing address.
Expand Down

0 comments on commit 3c6082a

Please sign in to comment.