
com.sap.cloud.sdk.s4hana.datamodel.bapi.structures.FixedAssetGlobalizationFieldsDateIntervalOfTimeDependentData Maven / Gradle / Ivy
/*
* Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
*/
package com.sap.cloud.sdk.s4hana.datamodel.bapi.structures;
import java.time.LocalDate;
import javax.annotation.Nullable;
import com.sap.cloud.sdk.result.ElementName;
import lombok.Builder;
import lombok.Data;
/**
* Globalization fields: Date interval of time-dependent data
*
* Structure: BAPI1022_GLO_TIME_DEP
*
*
*/
@Builder
@Data
public class FixedAssetGlobalizationFieldsDateIntervalOfTimeDependentData {
/**
* Field name: FROM_DATE
*
* Type element: BF_ADATU
* Domain name: DATUM
* Internal type: DATS
* Description: Date for beginning of validity
* Max length: 8
*
*
*/
@ElementName("FROM_DATE")
@Nullable
private LocalDate fromDate;
/**
* Field name: TO_DATE
*
* Type element: BF_BDATU
* Domain name: DATUM
* Internal type: DATS
* Description: Date Validity Ends
* Max length: 8
*
*
*/
@ElementName("TO_DATE")
@Nullable
private LocalDate toDate;
public void validate()
throws IllegalArgumentException
{
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy