Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions sdk-generation-log/storedvalue.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"service": "storedvalue",
"project": "java",
"generatedAt": "2026-07-16T13:15:15Z",
"openapiCommitSha": "c43ebe2c218116a98ddfa97cd5e4d63f6c427d6e",
"automationCommitSha": "a7fa5d57782b5065affe714e9d9caaf5009a1e24",
"libraryCommitSha": "c7150fe52b202cd5344750e8ae0d3b1b700ba729"
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class StoredValueLoadRequest {
/** Mark when the attribute has been explicitly set. */
private boolean isSetAmount = false;

/** The type of load you are trying to do, when absent we default to 'Load' */
/** The type of load you are trying to do, when absent we default to 'load' */
public enum LoadTypeEnum {
MERCHANDISERETURN(String.valueOf("merchandiseReturn")),

Expand Down Expand Up @@ -234,9 +234,9 @@ public void setAmount(Amount amount) {
}

/**
* The type of load you are trying to do, when absent we default to 'Load'
* The type of load you are trying to do, when absent we default to 'load'
*
* @param loadType The type of load you are trying to do, when absent we default to 'Load'
* @param loadType The type of load you are trying to do, when absent we default to 'load'
* @return the current {@code StoredValueLoadRequest} instance, allowing for method chaining
*/
public StoredValueLoadRequest loadType(LoadTypeEnum loadType) {
Expand All @@ -246,10 +246,10 @@ public StoredValueLoadRequest loadType(LoadTypeEnum loadType) {
}

/**
* The type of load you are trying to do, when absent we default to 'Load'
* The type of load you are trying to do, when absent we default to 'load'
*
* @return loadType The type of load you are trying to do, when absent we default to
* 'Load'
* 'load'
*/
@JsonProperty(JSON_PROPERTY_LOAD_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
Expand All @@ -258,9 +258,9 @@ public LoadTypeEnum getLoadType() {
}

/**
* The type of load you are trying to do, when absent we default to 'Load'
* The type of load you are trying to do, when absent we default to 'load'
*
* @param loadType The type of load you are trying to do, when absent we default to 'Load'
* @param loadType The type of load you are trying to do, when absent we default to 'load'
*/
@JsonProperty(JSON_PROPERTY_LOAD_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
Expand Down