graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/types/input/CDPConsentUpdateEventInput.java [53:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            final @GraphQLName("status") String status,
            final @GraphQLName("lastUpdate") OffsetDateTime lastUpdate,
            final @GraphQLName("expiration") OffsetDateTime expiration) {
        this.type = type;
        this.status = status;
        this.lastUpdate = lastUpdate;
        this.expiration = expiration;

    }

    public String getType() {
        return type;
    }

    public String getStatus() {
        return status;
    }

    public OffsetDateTime getLastUpdate() {
        return lastUpdate;
    }

    public OffsetDateTime getExpiration() {
        return expiration;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



graphql/cxs-impl/src/main/java/org/apache/unomi/graphql/types/input/CDPPersonaConsentInput.java [43:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                  final @GraphQLName("status") String status,
                                  final @GraphQLName("lastUpdate") OffsetDateTime lastUpdate,
                                  final @GraphQLName("expiration") OffsetDateTime expiration) {
        this.type = type;
        this.status = status;
        this.lastUpdate = lastUpdate;
        this.expiration = expiration;
    }

    public String getType() {
        return type;
    }

    public String getStatus() {
        return status;
    }

    public OffsetDateTime getLastUpdate() {
        return lastUpdate;
    }

    public OffsetDateTime getExpiration() {
        return expiration;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



