Skip to content

Commit

Permalink
[Auto Generated] 1.3.6-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jigardafda committed Nov 1, 2023
1 parent a0d7979 commit d92825c
Show file tree
Hide file tree
Showing 18 changed files with 1,571 additions and 35 deletions.
318 changes: 316 additions & 2 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Get started with the Kotlin Development SDK for Fynd Platform

# Usage

1. Add the dependency in your app build.gradle `implementation 'com.github.gofynd:fdk-client-kotlin:1.3.5-beta.4'` in your app build.gradle
1. Add the dependency in your app build.gradle `implementation 'com.github.gofynd:fdk-client-kotlin:1.3.6-beta.1'` in your app build.gradle
2. Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android {
minSdkVersion 21
targetSdkVersion 31
versionCode 2
versionName "1.3.5-beta.4"
versionName "1.3.6-beta.1"
multiDexEnabled true

vectorDrawables.useSupportLibrary = true
Expand Down
30 changes: 29 additions & 1 deletion documentation/application/CART.md
Original file line number Diff line number Diff line change
Expand Up @@ -9064,6 +9064,34 @@ Success. Returns the status of cart checkout. Refer `CartCheckoutResponseSchema`



#### [ProductPricePerUnit](#ProductPricePerUnit)

| Properties | Type | Nullable | Description |
| ---------- | ---- | -------- | ----------- |
| currencySymbol | String? | yes | |
| sellingPrice | Double? | yes | |
| currencyCode | String? | yes | |
| addOn | Double? | yes | |
| effective | Double? | yes | |
| marked | Double? | yes | |

---




#### [ProductPricePerUnitInfo](#ProductPricePerUnitInfo)

| Properties | Type | Nullable | Description |
| ---------- | ---- | -------- | ----------- |
| base | [ProductPricePerUnit](#ProductPricePerUnit)? | yes | |
| converted | [ProductPricePerUnit](#ProductPricePerUnit)? | yes | |

---




#### [ProductAvailabilitySize](#ProductAvailabilitySize)

| Properties | Type | Nullable | Description |
Expand Down Expand Up @@ -9210,7 +9238,7 @@ Success. Returns the status of cart checkout. Refer `CartCheckoutResponseSchema`
| key | String? | yes | |
| message | String? | yes | |
| isSet | Boolean? | yes | |
| pricePerUnit | [ProductPriceInfo](#ProductPriceInfo)? | yes | |
| pricePerUnit | [ProductPricePerUnitInfo](#ProductPricePerUnitInfo)? | yes | |
| promotionsApplied | ArrayList<[AppliedPromotion](#AppliedPromotion)>? | yes | |

---
Expand Down
Loading

0 comments on commit d92825c

Please sign in to comment.