import { DefaultDeSerializers, DeSerializers, GetAllRequestBuilder, GetByKeyRequestBuilder, CreateRequestBuilder, UpdateRequestBuilder, DeleteRequestBuilder, DeserializedType, RequestBuilder } from '@sap-cloud-sdk/odata-v4'; import { Dados_Soc } from './Dados_Soc'; /** * Request builder class for operations supported on the [[Dados_Soc]] entity. */ export declare class Dados_SocRequestBuilder extends RequestBuilder, T> { /** * Returns a request builder for retrieving one `Dados_Soc` entity based on its keys. * @param empresa Key property. See [[Dados_Soc.empresa]]. * @param dtLancto Key property. See [[Dados_Soc.dtLancto]]. * @param tpTabela Key property. See [[Dados_Soc.tpTabela]]. * @param dtInclSoc Key property. See [[Dados_Soc.dtInclSoc]]. * @param dtFimSoc Key property. See [[Dados_Soc.dtFimSoc]]. * @param pais Key property. See [[Dados_Soc.pais]]. * @param indQualifSocio Key property. See [[Dados_Soc.indQualifSocio]]. * @param cpfCnpj Key property. See [[Dados_Soc.cpfCnpj]]. * @param qualif Key property. See [[Dados_Soc.qualif]]. * @param numLancto Key property. See [[Dados_Soc.numLancto]]. * @returns A request builder for creating requests to retrieve one `Dados_Soc` entity based on its keys. */ getByKey(empresa: DeserializedType, dtLancto: DeserializedType, tpTabela: DeserializedType, dtInclSoc: DeserializedType, dtFimSoc: DeserializedType, pais: DeserializedType, indQualifSocio: DeserializedType, cpfCnpj: DeserializedType, qualif: DeserializedType, numLancto: DeserializedType): GetByKeyRequestBuilder, T>; /** * Returns a request builder for querying all `Dados_Soc` entities. * @returns A request builder for creating requests to retrieve all `Dados_Soc` entities. */ getAll(): GetAllRequestBuilder, T>; /** * Returns a request builder for creating a `Dados_Soc` entity. * @param entity The entity to be created * @returns A request builder for creating requests that create an entity of type `Dados_Soc`. */ create(entity: Dados_Soc): CreateRequestBuilder, T>; /** * Returns a request builder for updating an entity of type `Dados_Soc`. * @param entity The entity to be updated * @returns A request builder for creating requests that update an entity of type `Dados_Soc`. */ update(entity: Dados_Soc): UpdateRequestBuilder, T>; /** * Returns a request builder for deleting an entity of type `Dados_Soc`. * @param empresa Key property. See [[Dados_Soc.empresa]]. * @param dtLancto Key property. See [[Dados_Soc.dtLancto]]. * @param tpTabela Key property. See [[Dados_Soc.tpTabela]]. * @param dtInclSoc Key property. See [[Dados_Soc.dtInclSoc]]. * @param dtFimSoc Key property. See [[Dados_Soc.dtFimSoc]]. * @param pais Key property. See [[Dados_Soc.pais]]. * @param indQualifSocio Key property. See [[Dados_Soc.indQualifSocio]]. * @param cpfCnpj Key property. See [[Dados_Soc.cpfCnpj]]. * @param qualif Key property. See [[Dados_Soc.qualif]]. * @param numLancto Key property. See [[Dados_Soc.numLancto]]. * @returns A request builder for creating requests that delete an entity of type `Dados_Soc`. */ delete(empresa: string, dtLancto: string, tpTabela: string, dtInclSoc: string, dtFimSoc: string, pais: string, indQualifSocio: string, cpfCnpj: string, qualif: string, numLancto: string): DeleteRequestBuilder, T>; /** * Returns a request builder for deleting an entity of type `Dados_Soc`. * @param entity Pass the entity to be deleted. * @returns A request builder for creating requests that delete an entity of type `Dados_Soc` by taking the entity as a parameter. */ delete(entity: Dados_Soc): DeleteRequestBuilder, T>; } //# sourceMappingURL=Dados_SocRequestBuilder.d.ts.map