• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Bynder / bynder-java-sdk / 4023021486

pending completion
4023021486

push

Github

GitHub
Implementation of Workflow API (#100)

* Removed git excl. file

* First implementation of full Workflow functionality

* Final workflow implementation, tested and ready

* Update src/main/java/com/bynder/sdk/service/BynderClientImpl.java

* Update src/main/java/com/bynder/sdk/service/BynderClient.java

* format WorkflowService

Co-authored-by: Alfredo Navarro <alfredo.navarro@redbull.com>
Co-authored-by: Arpit Sharma <32858287+Arpit-Sharma-USC@users.noreply.github.com>
Co-authored-by: Arpit-Sharma-USC <arpitshrm07@gmail.com>

378 of 378 new or added lines in 35 files covered. (100.0%)

696 of 1479 relevant lines covered (47.06%)

0.47 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/com/bynder/sdk/model/workflow/WorkflowMetapropertyOption.java
1
/*
2
 * Copyright (c) 2017 Bynder B.V. All rights reserved.
3
 *
4
 * Licensed under the MIT License. See LICENSE file in the project root for full license
5
 * information.
6
 */
7
package com.bynder.sdk.model.workflow;
8

9
import com.google.gson.annotations.SerializedName;
10

11
public class WorkflowMetapropertyOption {
×
12

13
    @SerializedName(value = "ID")
14
    private String id;
15

16
    @SerializedName(value = "metapropertyID")
17
    private String metapropertyId;
18

19
    private String label;
20

21
    private int position;
22

23
    private Boolean isDefault;
24

25
    private String dateCreated;
26

27
    @SerializedName(value = "created_by")
28
    private WorkflowUser createdBy;
29

30
    public String getId() {
31
        return id;
×
32
    }
33

34
    public String getMetapropertyId() {
35
        return metapropertyId;
×
36
    }
37

38
    public String getLabel() {
39
        return label;
×
40
    }
41

42
    public int getPosition() {
43
        return position;
×
44
    }
45

46
    public Boolean getIsDefault() {
47
        return isDefault;
×
48
    }
49

50
    public String getDateCreated() {
51
        return dateCreated;
×
52
    }
53

54
    public WorkflowUser getCreatedBy() {
55
        return createdBy;
×
56
    }
57
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc