Skip to content

Latest commit

 

History

History
executable file
·
105 lines (61 loc) · 3.35 KB

File metadata and controls

executable file
·
105 lines (61 loc) · 3.35 KB

ClientDeductionID

(client_deduction_id)

Available Operations

delete

Delete deduction

Example Usage

import wingspan
from wingspan.models import operations

s = wingspan.Wingspan()


res = s.client_deduction_id.delete(id='program')

if res.deduction_response is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description
id str ✔️ Unique identifier

Response

operations.DeleteClientDeductionIDResponse

get

Get deduction

Example Usage

import wingspan
from wingspan.models import operations

s = wingspan.Wingspan()


res = s.client_deduction_id.get(id='female')

if res.deduction_response is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description
id str ✔️ Unique identifier

Response

operations.GetClientDeductionIDResponse

update

Update deduction

Example Usage

import wingspan
from wingspan.models import operations, shared

s = wingspan.Wingspan()


res = s.client_deduction_id.update(id='Van', deduction_update_request=shared.DeductionUpdateRequest())

if res.deduction_response is not None:
    # handle response
    pass

Parameters

Parameter Type Required Description
id str ✔️ Unique identifier
deduction_update_request Optional[shared.DeductionUpdateRequest] N/A

Response

operations.UpdateClientDeductionIDResponse