Skip to content

Commit

Permalink
Auto-generated by Jenkins job OTT-Generate-ClientLibs-ios-and-android…
Browse files Browse the repository at this point in the history
…/486, branch 7_6_0
  • Loading branch information
Backend CI committed May 19, 2022
1 parent 47f2c6e commit 7215eb8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions KalturaClient/src/main/java/com/kaltura/client/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public class Client extends ClientBase {
public Client(ConnectionConfiguration config) {
super(config);

this.setClientTag("java:22-05-16");
this.setApiVersion("7.6.0.29893");
this.setClientTag("java:22-05-19");
this.setApiVersion("7.6.0.29894");
this.clientConfiguration.put("format", 1); // JSON
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class DeviceBrand extends ObjectBase {
public interface Tokenizer extends ObjectBase.Tokenizer {
String id();
String name();
String deviceFamilyId();
String deviceFamilyid();
String type();
}

Expand All @@ -67,7 +67,7 @@ public interface Tokenizer extends ObjectBase.Tokenizer {
/**
* Device family identifier
*/
private Long deviceFamilyId;
private Long deviceFamilyid;
/**
* Type of device family. if this device family belongs only to this
group, otherwise.
Expand Down Expand Up @@ -98,16 +98,16 @@ public void name(String multirequestToken){
setToken("name", multirequestToken);
}

// deviceFamilyId:
public Long getDeviceFamilyId(){
return this.deviceFamilyId;
// deviceFamilyid:
public Long getDeviceFamilyid(){
return this.deviceFamilyid;
}
public void setDeviceFamilyId(Long deviceFamilyId){
this.deviceFamilyId = deviceFamilyId;
public void setDeviceFamilyid(Long deviceFamilyid){
this.deviceFamilyid = deviceFamilyid;
}

public void deviceFamilyId(String multirequestToken){
setToken("deviceFamilyId", multirequestToken);
public void deviceFamilyid(String multirequestToken){
setToken("deviceFamilyid", multirequestToken);
}

// type:
Expand All @@ -127,7 +127,7 @@ public DeviceBrand(JsonObject jsonObject) throws APIException {
// set members values:
id = GsonParser.parseLong(jsonObject.get("id"));
name = GsonParser.parseString(jsonObject.get("name"));
deviceFamilyId = GsonParser.parseLong(jsonObject.get("deviceFamilyId"));
deviceFamilyid = GsonParser.parseLong(jsonObject.get("deviceFamilyid"));
type = DeviceBrandType.get(GsonParser.parseString(jsonObject.get("type")));

}
Expand All @@ -137,7 +137,7 @@ public Params toParams() {
kparams.add("objectType", "KalturaDeviceBrand");
kparams.add("id", this.id);
kparams.add("name", this.name);
kparams.add("deviceFamilyId", this.deviceFamilyId);
kparams.add("deviceFamilyid", this.deviceFamilyid);
return kparams;
}

Expand All @@ -159,15 +159,15 @@ public void writeToParcel(Parcel dest, int flags) {
super.writeToParcel(dest, flags);
dest.writeValue(this.id);
dest.writeString(this.name);
dest.writeValue(this.deviceFamilyId);
dest.writeValue(this.deviceFamilyid);
dest.writeInt(this.type == null ? -1 : this.type.ordinal());
}

public DeviceBrand(Parcel in) {
super(in);
this.id = (Long)in.readValue(Long.class.getClassLoader());
this.name = in.readString();
this.deviceFamilyId = (Long)in.readValue(Long.class.getClassLoader());
this.deviceFamilyid = (Long)in.readValue(Long.class.getClassLoader());
int tmpType = in.readInt();
this.type = tmpType == -1 ? null : DeviceBrandType.values()[tmpType];
}
Expand Down
2 changes: 1 addition & 1 deletion version.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// ./gradlew KalturaClient:bintrayUpload -PdryRun=false -PbintrayUser=$BINTRAY_USER -PbintrayKey=$BINTRAY_KEY

// Library Version
ext.kalturaClientVersion = '7.6.0.29893'
ext.kalturaClientVersion = '7.6.0.29894'

// Publish to Bintray
try {
Expand Down

0 comments on commit 7215eb8

Please sign in to comment.