All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mx.path.model.mdx.model.ondemand.mixins.AccountXmlMixin Maven / Gradle / Ivy

There is a newer version: 16.0.1
Show newest version
package com.mx.path.model.mdx.model.ondemand.mixins;

import java.time.LocalDate;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonRootName;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.mx.path.model.mdx.model.ondemand.MdxOnDemandLocalDateSerializer;

@JsonRootName("account")
public interface AccountXmlMixin {

  @JsonIgnore
  String getUserId();

  @JsonIgnore
  boolean getWrapped();

  @JsonSerialize(using = MdxOnDemandLocalDateSerializer.class)
  LocalDate getPaymentDueOn();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy