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

Adyen / adyen-java-api-library / #2703

16 Oct 2023 09:08AM UTC coverage: 12.568%. First build
#2703

push

web-flow
Merge 5bb3765b7 into fe719ccb3

6014 of 6014 new or added lines in 86 files covered. (100.0%)

11852 of 94302 relevant lines covered (12.57%)

0.13 hits per line

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

0.0
/src/main/java/com/adyen/model/marketpaywebhooks/LegalArrangementEntityDetail.java
1
/*
2
 * Classic Platforms - Notifications
3
 *
4
 * The version of the OpenAPI document: 6
5
 * 
6
 *
7
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
8
 * https://openapi-generator.tech
9
 * Do not edit the class manually.
10
 */
11

12

13
package com.adyen.model.marketpaywebhooks;
14

15
import java.util.Objects;
16
import java.util.Arrays;
17
import java.util.Map;
18
import java.util.HashMap;
19
import com.adyen.model.marketpaywebhooks.BusinessDetails;
20
import com.adyen.model.marketpaywebhooks.IndividualDetails;
21
import com.adyen.model.marketpaywebhooks.ViasAddress;
22
import com.adyen.model.marketpaywebhooks.ViasPhoneNumber;
23
import com.fasterxml.jackson.annotation.JsonInclude;
24
import com.fasterxml.jackson.annotation.JsonProperty;
25
import com.fasterxml.jackson.annotation.JsonCreator;
26
import com.fasterxml.jackson.annotation.JsonTypeName;
27
import com.fasterxml.jackson.annotation.JsonValue;
28
import io.swagger.annotations.ApiModel;
29
import io.swagger.annotations.ApiModelProperty;
30
import java.util.ArrayList;
31
import java.util.List;
32
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
33
import com.fasterxml.jackson.core.JsonProcessingException;
34

35

36
/**
37
 * LegalArrangementEntityDetail
38
 */
39
@JsonPropertyOrder({
40
  LegalArrangementEntityDetail.JSON_PROPERTY_ADDRESS,
41
  LegalArrangementEntityDetail.JSON_PROPERTY_BUSINESS_DETAILS,
42
  LegalArrangementEntityDetail.JSON_PROPERTY_EMAIL,
43
  LegalArrangementEntityDetail.JSON_PROPERTY_FULL_PHONE_NUMBER,
44
  LegalArrangementEntityDetail.JSON_PROPERTY_INDIVIDUAL_DETAILS,
45
  LegalArrangementEntityDetail.JSON_PROPERTY_LEGAL_ARRANGEMENT_ENTITY_CODE,
46
  LegalArrangementEntityDetail.JSON_PROPERTY_LEGAL_ARRANGEMENT_ENTITY_REFERENCE,
47
  LegalArrangementEntityDetail.JSON_PROPERTY_LEGAL_ARRANGEMENT_MEMBERS,
48
  LegalArrangementEntityDetail.JSON_PROPERTY_LEGAL_ENTITY_TYPE,
49
  LegalArrangementEntityDetail.JSON_PROPERTY_PHONE_NUMBER,
50
  LegalArrangementEntityDetail.JSON_PROPERTY_WEB_ADDRESS
51
})
52

53
public class LegalArrangementEntityDetail {
54
  public static final String JSON_PROPERTY_ADDRESS = "address";
55
  private ViasAddress address;
56

57
  public static final String JSON_PROPERTY_BUSINESS_DETAILS = "businessDetails";
58
  private BusinessDetails businessDetails;
59

60
  public static final String JSON_PROPERTY_EMAIL = "email";
61
  private String email;
62

63
  public static final String JSON_PROPERTY_FULL_PHONE_NUMBER = "fullPhoneNumber";
64
  private String fullPhoneNumber;
65

66
  public static final String JSON_PROPERTY_INDIVIDUAL_DETAILS = "individualDetails";
67
  private IndividualDetails individualDetails;
68

69
  public static final String JSON_PROPERTY_LEGAL_ARRANGEMENT_ENTITY_CODE = "legalArrangementEntityCode";
70
  private String legalArrangementEntityCode;
71

72
  public static final String JSON_PROPERTY_LEGAL_ARRANGEMENT_ENTITY_REFERENCE = "legalArrangementEntityReference";
73
  private String legalArrangementEntityReference;
74

75
  /**
76
   * Gets or Sets legalArrangementMembers
77
   */
78
  public enum LegalArrangementMembersEnum {
×
79
    BENEFICIARY("Beneficiary"),
×
80
    
81
    CONTROLLINGPERSON("ControllingPerson"),
×
82
    
83
    PARTNER("Partner"),
×
84
    
85
    PROTECTOR("Protector"),
×
86
    
87
    SETTLOR("Settlor"),
×
88
    
89
    SHAREHOLDER("Shareholder"),
×
90
    
91
    TRUSTEE("Trustee");
×
92

93
    private String value;
94

95
    LegalArrangementMembersEnum(String value) {
×
96
      this.value = value;
×
97
    }
×
98

99
    @JsonValue
100
    public String getValue() {
101
      return value;
×
102
    }
103

104
    @Override
105
    public String toString() {
106
      return String.valueOf(value);
×
107
    }
108

109
    @JsonCreator
110
    public static LegalArrangementMembersEnum fromValue(String value) {
111
      for (LegalArrangementMembersEnum b : LegalArrangementMembersEnum.values()) {
×
112
        if (b.value.equals(value)) {
×
113
          return b;
×
114
        }
115
      }
116
      throw new IllegalArgumentException("Unexpected value '" + value + "'");
×
117
    }
118
  }
119

120
  public static final String JSON_PROPERTY_LEGAL_ARRANGEMENT_MEMBERS = "legalArrangementMembers";
121
  private List<LegalArrangementMembersEnum> legalArrangementMembers = null;
×
122

123
  /**
124
   * The legal entity type.  Possible values: **Business**, **Individual**, **NonProfit**, **PublicCompany**, or **Partnership**. 
125
   */
126
  public enum LegalEntityTypeEnum {
×
127
    BUSINESS("Business"),
×
128
    
129
    INDIVIDUAL("Individual"),
×
130
    
131
    NONPROFIT("NonProfit"),
×
132
    
133
    PARTNERSHIP("Partnership"),
×
134
    
135
    PUBLICCOMPANY("PublicCompany");
×
136

137
    private String value;
138

139
    LegalEntityTypeEnum(String value) {
×
140
      this.value = value;
×
141
    }
×
142

143
    @JsonValue
144
    public String getValue() {
145
      return value;
×
146
    }
147

148
    @Override
149
    public String toString() {
150
      return String.valueOf(value);
×
151
    }
152

153
    @JsonCreator
154
    public static LegalEntityTypeEnum fromValue(String value) {
155
      for (LegalEntityTypeEnum b : LegalEntityTypeEnum.values()) {
×
156
        if (b.value.equals(value)) {
×
157
          return b;
×
158
        }
159
      }
160
      throw new IllegalArgumentException("Unexpected value '" + value + "'");
×
161
    }
162
  }
163

164
  public static final String JSON_PROPERTY_LEGAL_ENTITY_TYPE = "legalEntityType";
165
  private LegalEntityTypeEnum legalEntityType;
166

167
  public static final String JSON_PROPERTY_PHONE_NUMBER = "phoneNumber";
168
  private ViasPhoneNumber phoneNumber;
169

170
  public static final String JSON_PROPERTY_WEB_ADDRESS = "webAddress";
171
  private String webAddress;
172

173
  public LegalArrangementEntityDetail() { 
×
174
  }
×
175

176
  public LegalArrangementEntityDetail address(ViasAddress address) {
177
    this.address = address;
×
178
    return this;
×
179
  }
180

181
   /**
182
   * Get address
183
   * @return address
184
  **/
185
  @ApiModelProperty(value = "")
186
  @JsonProperty(JSON_PROPERTY_ADDRESS)
187
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
188

189
  public ViasAddress getAddress() {
190
    return address;
×
191
  }
192

193

194
  @JsonProperty(JSON_PROPERTY_ADDRESS)
195
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
196
  public void setAddress(ViasAddress address) {
197
    this.address = address;
×
198
  }
×
199

200

201
  public LegalArrangementEntityDetail businessDetails(BusinessDetails businessDetails) {
202
    this.businessDetails = businessDetails;
×
203
    return this;
×
204
  }
205

206
   /**
207
   * Get businessDetails
208
   * @return businessDetails
209
  **/
210
  @ApiModelProperty(value = "")
211
  @JsonProperty(JSON_PROPERTY_BUSINESS_DETAILS)
212
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
213

214
  public BusinessDetails getBusinessDetails() {
215
    return businessDetails;
×
216
  }
217

218

219
  @JsonProperty(JSON_PROPERTY_BUSINESS_DETAILS)
220
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
221
  public void setBusinessDetails(BusinessDetails businessDetails) {
222
    this.businessDetails = businessDetails;
×
223
  }
×
224

225

226
  public LegalArrangementEntityDetail email(String email) {
227
    this.email = email;
×
228
    return this;
×
229
  }
230

231
   /**
232
   * The e-mail address of the entity.
233
   * @return email
234
  **/
235
  @ApiModelProperty(value = "The e-mail address of the entity.")
236
  @JsonProperty(JSON_PROPERTY_EMAIL)
237
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
238

239
  public String getEmail() {
240
    return email;
×
241
  }
242

243

244
  @JsonProperty(JSON_PROPERTY_EMAIL)
245
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
246
  public void setEmail(String email) {
247
    this.email = email;
×
248
  }
×
249

250

251
  public LegalArrangementEntityDetail fullPhoneNumber(String fullPhoneNumber) {
252
    this.fullPhoneNumber = fullPhoneNumber;
×
253
    return this;
×
254
  }
255

256
   /**
257
   * The phone number of the contact provided as a single string.  It will be handled as a landline phone. **Examples:** \&quot;0031 6 11 22 33 44\&quot;, \&quot;+316/1122-3344\&quot;, \&quot;(0031) 611223344\&quot;
258
   * @return fullPhoneNumber
259
  **/
260
  @ApiModelProperty(value = "The phone number of the contact provided as a single string.  It will be handled as a landline phone. **Examples:** \"0031 6 11 22 33 44\", \"+316/1122-3344\", \"(0031) 611223344\"")
261
  @JsonProperty(JSON_PROPERTY_FULL_PHONE_NUMBER)
262
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
263

264
  public String getFullPhoneNumber() {
265
    return fullPhoneNumber;
×
266
  }
267

268

269
  @JsonProperty(JSON_PROPERTY_FULL_PHONE_NUMBER)
270
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
271
  public void setFullPhoneNumber(String fullPhoneNumber) {
272
    this.fullPhoneNumber = fullPhoneNumber;
×
273
  }
×
274

275

276
  public LegalArrangementEntityDetail individualDetails(IndividualDetails individualDetails) {
277
    this.individualDetails = individualDetails;
×
278
    return this;
×
279
  }
280

281
   /**
282
   * Get individualDetails
283
   * @return individualDetails
284
  **/
285
  @ApiModelProperty(value = "")
286
  @JsonProperty(JSON_PROPERTY_INDIVIDUAL_DETAILS)
287
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
288

289
  public IndividualDetails getIndividualDetails() {
290
    return individualDetails;
×
291
  }
292

293

294
  @JsonProperty(JSON_PROPERTY_INDIVIDUAL_DETAILS)
295
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
296
  public void setIndividualDetails(IndividualDetails individualDetails) {
297
    this.individualDetails = individualDetails;
×
298
  }
×
299

300

301
  public LegalArrangementEntityDetail legalArrangementEntityCode(String legalArrangementEntityCode) {
302
    this.legalArrangementEntityCode = legalArrangementEntityCode;
×
303
    return this;
×
304
  }
305

306
   /**
307
   * Adyen-generated unique alphanumeric identifier (UUID) for the entry, returned in the response when you create a legal arrangement entity. Use only when updating an account holder. If you include this field when creating an account holder, the request will fail.
308
   * @return legalArrangementEntityCode
309
  **/
310
  @ApiModelProperty(value = "Adyen-generated unique alphanumeric identifier (UUID) for the entry, returned in the response when you create a legal arrangement entity. Use only when updating an account holder. If you include this field when creating an account holder, the request will fail.")
311
  @JsonProperty(JSON_PROPERTY_LEGAL_ARRANGEMENT_ENTITY_CODE)
312
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
313

314
  public String getLegalArrangementEntityCode() {
315
    return legalArrangementEntityCode;
×
316
  }
317

318

319
  @JsonProperty(JSON_PROPERTY_LEGAL_ARRANGEMENT_ENTITY_CODE)
320
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
321
  public void setLegalArrangementEntityCode(String legalArrangementEntityCode) {
322
    this.legalArrangementEntityCode = legalArrangementEntityCode;
×
323
  }
×
324

325

326
  public LegalArrangementEntityDetail legalArrangementEntityReference(String legalArrangementEntityReference) {
327
    this.legalArrangementEntityReference = legalArrangementEntityReference;
×
328
    return this;
×
329
  }
330

331
   /**
332
   * Your reference for the legal arrangement entity.
333
   * @return legalArrangementEntityReference
334
  **/
335
  @ApiModelProperty(value = "Your reference for the legal arrangement entity.")
336
  @JsonProperty(JSON_PROPERTY_LEGAL_ARRANGEMENT_ENTITY_REFERENCE)
337
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
338

339
  public String getLegalArrangementEntityReference() {
340
    return legalArrangementEntityReference;
×
341
  }
342

343

344
  @JsonProperty(JSON_PROPERTY_LEGAL_ARRANGEMENT_ENTITY_REFERENCE)
345
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
346
  public void setLegalArrangementEntityReference(String legalArrangementEntityReference) {
347
    this.legalArrangementEntityReference = legalArrangementEntityReference;
×
348
  }
×
349

350

351
  public LegalArrangementEntityDetail legalArrangementMembers(List<LegalArrangementMembersEnum> legalArrangementMembers) {
352
    this.legalArrangementMembers = legalArrangementMembers;
×
353
    return this;
×
354
  }
355

356
  public LegalArrangementEntityDetail addLegalArrangementMembersItem(LegalArrangementMembersEnum legalArrangementMembersItem) {
357
    if (this.legalArrangementMembers == null) {
×
358
      this.legalArrangementMembers = new ArrayList<>();
×
359
    }
360
    this.legalArrangementMembers.add(legalArrangementMembersItem);
×
361
    return this;
×
362
  }
363

364
   /**
365
   * An array containing the roles of the entity in the legal arrangement.  The possible values depend on the legal arrangement &#x60;type&#x60;.  - For &#x60;type&#x60; **Association**: **ControllingPerson** and **Shareholder**.  - For &#x60;type&#x60; **Partnership**: **Partner** and **Shareholder**.  - For &#x60;type&#x60; **Trust**: **Trustee**, **Settlor**, **Protector**, **Beneficiary**,  and **Shareholder**.  
366
   * @return legalArrangementMembers
367
  **/
368
  @ApiModelProperty(value = "An array containing the roles of the entity in the legal arrangement.  The possible values depend on the legal arrangement `type`.  - For `type` **Association**: **ControllingPerson** and **Shareholder**.  - For `type` **Partnership**: **Partner** and **Shareholder**.  - For `type` **Trust**: **Trustee**, **Settlor**, **Protector**, **Beneficiary**,  and **Shareholder**.  ")
369
  @JsonProperty(JSON_PROPERTY_LEGAL_ARRANGEMENT_MEMBERS)
370
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
371

372
  public List<LegalArrangementMembersEnum> getLegalArrangementMembers() {
373
    return legalArrangementMembers;
×
374
  }
375

376

377
  @JsonProperty(JSON_PROPERTY_LEGAL_ARRANGEMENT_MEMBERS)
378
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
379
  public void setLegalArrangementMembers(List<LegalArrangementMembersEnum> legalArrangementMembers) {
380
    this.legalArrangementMembers = legalArrangementMembers;
×
381
  }
×
382

383

384
  public LegalArrangementEntityDetail legalEntityType(LegalEntityTypeEnum legalEntityType) {
385
    this.legalEntityType = legalEntityType;
×
386
    return this;
×
387
  }
388

389
   /**
390
   * The legal entity type.  Possible values: **Business**, **Individual**, **NonProfit**, **PublicCompany**, or **Partnership**. 
391
   * @return legalEntityType
392
  **/
393
  @ApiModelProperty(value = "The legal entity type.  Possible values: **Business**, **Individual**, **NonProfit**, **PublicCompany**, or **Partnership**. ")
394
  @JsonProperty(JSON_PROPERTY_LEGAL_ENTITY_TYPE)
395
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
396

397
  public LegalEntityTypeEnum getLegalEntityType() {
398
    return legalEntityType;
×
399
  }
400

401

402
  @JsonProperty(JSON_PROPERTY_LEGAL_ENTITY_TYPE)
403
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
404
  public void setLegalEntityType(LegalEntityTypeEnum legalEntityType) {
405
    this.legalEntityType = legalEntityType;
×
406
  }
×
407

408

409
  public LegalArrangementEntityDetail phoneNumber(ViasPhoneNumber phoneNumber) {
410
    this.phoneNumber = phoneNumber;
×
411
    return this;
×
412
  }
413

414
   /**
415
   * Get phoneNumber
416
   * @return phoneNumber
417
  **/
418
  @ApiModelProperty(value = "")
419
  @JsonProperty(JSON_PROPERTY_PHONE_NUMBER)
420
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
421

422
  public ViasPhoneNumber getPhoneNumber() {
423
    return phoneNumber;
×
424
  }
425

426

427
  @JsonProperty(JSON_PROPERTY_PHONE_NUMBER)
428
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
429
  public void setPhoneNumber(ViasPhoneNumber phoneNumber) {
430
    this.phoneNumber = phoneNumber;
×
431
  }
×
432

433

434
  public LegalArrangementEntityDetail webAddress(String webAddress) {
435
    this.webAddress = webAddress;
×
436
    return this;
×
437
  }
438

439
   /**
440
   * The URL of the website of the contact.
441
   * @return webAddress
442
  **/
443
  @ApiModelProperty(value = "The URL of the website of the contact.")
444
  @JsonProperty(JSON_PROPERTY_WEB_ADDRESS)
445
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
446

447
  public String getWebAddress() {
448
    return webAddress;
×
449
  }
450

451

452
  @JsonProperty(JSON_PROPERTY_WEB_ADDRESS)
453
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
454
  public void setWebAddress(String webAddress) {
455
    this.webAddress = webAddress;
×
456
  }
×
457

458

459
  /**
460
   * Return true if this LegalArrangementEntityDetail object is equal to o.
461
   */
462
  @Override
463
  public boolean equals(Object o) {
464
    if (this == o) {
×
465
      return true;
×
466
    }
467
    if (o == null || getClass() != o.getClass()) {
×
468
      return false;
×
469
    }
470
    LegalArrangementEntityDetail legalArrangementEntityDetail = (LegalArrangementEntityDetail) o;
×
471
    return Objects.equals(this.address, legalArrangementEntityDetail.address) &&
×
472
        Objects.equals(this.businessDetails, legalArrangementEntityDetail.businessDetails) &&
×
473
        Objects.equals(this.email, legalArrangementEntityDetail.email) &&
×
474
        Objects.equals(this.fullPhoneNumber, legalArrangementEntityDetail.fullPhoneNumber) &&
×
475
        Objects.equals(this.individualDetails, legalArrangementEntityDetail.individualDetails) &&
×
476
        Objects.equals(this.legalArrangementEntityCode, legalArrangementEntityDetail.legalArrangementEntityCode) &&
×
477
        Objects.equals(this.legalArrangementEntityReference, legalArrangementEntityDetail.legalArrangementEntityReference) &&
×
478
        Objects.equals(this.legalArrangementMembers, legalArrangementEntityDetail.legalArrangementMembers) &&
×
479
        Objects.equals(this.legalEntityType, legalArrangementEntityDetail.legalEntityType) &&
×
480
        Objects.equals(this.phoneNumber, legalArrangementEntityDetail.phoneNumber) &&
×
481
        Objects.equals(this.webAddress, legalArrangementEntityDetail.webAddress);
×
482
  }
483

484
  @Override
485
  public int hashCode() {
486
    return Objects.hash(address, businessDetails, email, fullPhoneNumber, individualDetails, legalArrangementEntityCode, legalArrangementEntityReference, legalArrangementMembers, legalEntityType, phoneNumber, webAddress);
×
487
  }
488

489
  @Override
490
  public String toString() {
491
    StringBuilder sb = new StringBuilder();
×
492
    sb.append("class LegalArrangementEntityDetail {\n");
×
493
    sb.append("    address: ").append(toIndentedString(address)).append("\n");
×
494
    sb.append("    businessDetails: ").append(toIndentedString(businessDetails)).append("\n");
×
495
    sb.append("    email: ").append(toIndentedString(email)).append("\n");
×
496
    sb.append("    fullPhoneNumber: ").append(toIndentedString(fullPhoneNumber)).append("\n");
×
497
    sb.append("    individualDetails: ").append(toIndentedString(individualDetails)).append("\n");
×
498
    sb.append("    legalArrangementEntityCode: ").append(toIndentedString(legalArrangementEntityCode)).append("\n");
×
499
    sb.append("    legalArrangementEntityReference: ").append(toIndentedString(legalArrangementEntityReference)).append("\n");
×
500
    sb.append("    legalArrangementMembers: ").append(toIndentedString(legalArrangementMembers)).append("\n");
×
501
    sb.append("    legalEntityType: ").append(toIndentedString(legalEntityType)).append("\n");
×
502
    sb.append("    phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n");
×
503
    sb.append("    webAddress: ").append(toIndentedString(webAddress)).append("\n");
×
504
    sb.append("}");
×
505
    return sb.toString();
×
506
  }
507

508
  /**
509
   * Convert the given object to string with each line indented by 4 spaces
510
   * (except the first line).
511
   */
512
  private String toIndentedString(Object o) {
513
    if (o == null) {
×
514
      return "null";
×
515
    }
516
    return o.toString().replace("\n", "\n    ");
×
517
  }
518

519
/**
520
   * Create an instance of LegalArrangementEntityDetail given an JSON string
521
   *
522
   * @param jsonString JSON string
523
   * @return An instance of LegalArrangementEntityDetail
524
   * @throws JsonProcessingException if the JSON string is invalid with respect to LegalArrangementEntityDetail
525
   */
526
  public static LegalArrangementEntityDetail fromJson(String jsonString) throws JsonProcessingException {
527
    return JSON.getMapper().readValue(jsonString, LegalArrangementEntityDetail.class);
×
528
  }
529
/**
530
  * Convert an instance of LegalArrangementEntityDetail to an JSON string
531
  *
532
  * @return JSON string
533
  */
534
  public String toJson() throws JsonProcessingException {
535
    return JSON.getMapper().writeValueAsString(this);
×
536
  }
537
}
538

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

© 2025 Coveralls, Inc