|
| 1 | +/* |
| 2 | + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
| 3 | + * in compliance with the License. You may obtain a copy of the License at |
| 4 | + * |
| 5 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 6 | + * |
| 7 | + * Unless required by applicable law or agreed to in writing, software distributed under the License |
| 8 | + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
| 9 | + * or implied. See the License for the specific language governing permissions and limitations under |
| 10 | + * the License. |
| 11 | + */ |
| 12 | +/* |
| 13 | + * This code was generated by https://github.com/googleapis/google-api-java-client-services/ |
| 14 | + * Modify at your own risk. |
| 15 | + */ |
| 16 | + |
| 17 | +package com.google.api.services.integrations.v1.model; |
| 18 | + |
| 19 | +/** |
| 20 | + * Contains the details of the execution info: this includes the replay reason and replay tree |
| 21 | + * connecting executions in a parent-child relationship |
| 22 | + * |
| 23 | + * <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is |
| 24 | + * transmitted over HTTP when working with the Application Integration API. For a detailed |
| 25 | + * explanation see: |
| 26 | + * <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a> |
| 27 | + * </p> |
| 28 | + * |
| 29 | + * @author Google, Inc. |
| 30 | + */ |
| 31 | +@SuppressWarnings("javadoc") |
| 32 | +public final class EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo extends com.google.api.client.json.GenericJson { |
| 33 | + |
| 34 | + /** |
| 35 | + * If this execution is a replay of another execution, then this field contains the original |
| 36 | + * execution id. |
| 37 | + * The value may be {@code null}. |
| 38 | + */ |
| 39 | + @com.google.api.client.util.Key |
| 40 | + private java.lang.String originalExecutionInfoId; |
| 41 | + |
| 42 | + /** |
| 43 | + * reason for replay |
| 44 | + * The value may be {@code null}. |
| 45 | + */ |
| 46 | + @com.google.api.client.util.Key |
| 47 | + private java.lang.String replayReason; |
| 48 | + |
| 49 | + /** |
| 50 | + * If this execution has been replayed, then this field contains the execution ids of the replayed |
| 51 | + * executions. |
| 52 | + * The value may be {@code null}. |
| 53 | + */ |
| 54 | + @com.google.api.client.util.Key |
| 55 | + private java.util.List<java.lang.String> replayedExecutionInfoIds; |
| 56 | + |
| 57 | + /** |
| 58 | + * If this execution is a replay of another execution, then this field contains the original |
| 59 | + * execution id. |
| 60 | + * @return value or {@code null} for none |
| 61 | + */ |
| 62 | + public java.lang.String getOriginalExecutionInfoId() { |
| 63 | + return originalExecutionInfoId; |
| 64 | + } |
| 65 | + |
| 66 | + /** |
| 67 | + * If this execution is a replay of another execution, then this field contains the original |
| 68 | + * execution id. |
| 69 | + * @param originalExecutionInfoId originalExecutionInfoId or {@code null} for none |
| 70 | + */ |
| 71 | + public EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo setOriginalExecutionInfoId(java.lang.String originalExecutionInfoId) { |
| 72 | + this.originalExecutionInfoId = originalExecutionInfoId; |
| 73 | + return this; |
| 74 | + } |
| 75 | + |
| 76 | + /** |
| 77 | + * reason for replay |
| 78 | + * @return value or {@code null} for none |
| 79 | + */ |
| 80 | + public java.lang.String getReplayReason() { |
| 81 | + return replayReason; |
| 82 | + } |
| 83 | + |
| 84 | + /** |
| 85 | + * reason for replay |
| 86 | + * @param replayReason replayReason or {@code null} for none |
| 87 | + */ |
| 88 | + public EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo setReplayReason(java.lang.String replayReason) { |
| 89 | + this.replayReason = replayReason; |
| 90 | + return this; |
| 91 | + } |
| 92 | + |
| 93 | + /** |
| 94 | + * If this execution has been replayed, then this field contains the execution ids of the replayed |
| 95 | + * executions. |
| 96 | + * @return value or {@code null} for none |
| 97 | + */ |
| 98 | + public java.util.List<java.lang.String> getReplayedExecutionInfoIds() { |
| 99 | + return replayedExecutionInfoIds; |
| 100 | + } |
| 101 | + |
| 102 | + /** |
| 103 | + * If this execution has been replayed, then this field contains the execution ids of the replayed |
| 104 | + * executions. |
| 105 | + * @param replayedExecutionInfoIds replayedExecutionInfoIds or {@code null} for none |
| 106 | + */ |
| 107 | + public EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo setReplayedExecutionInfoIds(java.util.List<java.lang.String> replayedExecutionInfoIds) { |
| 108 | + this.replayedExecutionInfoIds = replayedExecutionInfoIds; |
| 109 | + return this; |
| 110 | + } |
| 111 | + |
| 112 | + @Override |
| 113 | + public EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo set(String fieldName, Object value) { |
| 114 | + return (EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo) super.set(fieldName, value); |
| 115 | + } |
| 116 | + |
| 117 | + @Override |
| 118 | + public EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo clone() { |
| 119 | + return (EnterpriseCrmFrontendsEventbusProtoEventExecutionInfoReplayInfo) super.clone(); |
| 120 | + } |
| 121 | + |
| 122 | +} |
0 commit comments