o
    
¼>h£  ã                   @   s4   d dl mZ ddlmZ ddlZG dd„ deƒZdS )é   )ÚResourceé   )ÚURLé    Nc                       sr   e Zd Zd‡ fdd„	Zi fdd„Zi f‡ fdd„	Zi f‡ fdd	„	Zi fd
d„Zdd„ Zi fdd„Z	dd„ Z
‡  ZS )ÚPaymentLinkNc                    s"   t t| ƒ |¡ tjtj | _d S ©N)Úsuperr   Ú__init__r   ÚV1ÚPAYMENT_LINK_URLÚbase_url)ÚselfÚclient©Ú	__class__© ú/var/www/vedio/testing/chatpythonscript.ninositsolution.com/env/lib/python3.10/site-packages/razorpay/resources/payment_link.pyr	      s   zPaymentLink.__init__c                 K   s   t  dt¡ | j|fi |¤ŽS )Nz"Will be Deprecated in next release)ÚwarningsÚwarnÚDeprecationWarningÚall©r   ÚdataÚkwargsr   r   r   Ú	fetch_all   s   zPaymentLink.fetch_allc                    s   t t| ƒj|fi |¤ŽS )zo
        Fetch all Payment link entities

        Returns:
            Dictionary of Payment link data
        )r   r   r   r   r   r   r   r      s   zPaymentLink.allc                    s   t t| ƒj||fi |¤ŽS )zà
        Fetch Payment link for given Id

        Args:
            payment_link_id : Id for which Payment link object has to be retrieved

        Returns:
            Payment link dict for given payment_link_id Id
        )r   r   Úfetch)r   Úpayment_link_idr   r   r   r   r   r      s   
zPaymentLink.fetchc                 K   s   | j }| j||fi |¤ŽS )zÜ
        Create Payment link from given dict

        Args:
            data : Dictionary having keys using which Payment link have to be created

        Returns:
            Payment link Dict which was created
        )r   Úpost_url)r   r   r   Úurlr   r   r   Úcreate$   s   
zPaymentLink.createc                 K   s"   d  | j|¡}| j|i fi |¤ŽS )aŠ  
        Cancel an unpaid Payment link with given ID via API
        It can only be called on an Payment link that is not in the paid state.

        Args:
            payment_link_id : Id for cancel the Payment link
        Returns:
            The response for the API will be the Payment link entity, similar to create/update API response, with status attribute's value as cancelled
        z{}/{}/cancel©Úformatr   r   )r   r   r   r   r   r   r   Úcancel1   s   
zPaymentLink.cancelc                 K   s"   d  | j|¡}| j||fi |¤ŽS )a¶  
        Edit the Payment link
        Args:
            data : Dictionary having keys using which order have to be edited
                reference_id : Adds a unique reference number to an existing link.

                expire_by : Timestamp, in Unix format, when the payment links should expire.

                notes : key value pair as notes
            
            Returns:
            Payment Link Dict which was edited
        z{}/{})r!   r   Ú	patch_url)r   r   r   r   r   r   r   r   Úedit>   s   zPaymentLink.editc                 K   s$   d  | j||¡}| j|i fi |¤ŽS )z¹
        Send notification

        Args:
            payment_link_id : Unique identifier of the Payment Link that should be resent.
            
            medium : sms/email
        z{}/{}/notify_by/{}r    )r   r   Úmediumr   r   r   r   r   ÚnotifyByO   s   	zPaymentLink.notifyByr   )Ú__name__Ú
__module__Ú__qualname__r	   r   r   r   r   r"   r$   r&   Ú__classcell__r   r   r   r   r      s    	r   )Úbaser   Úconstants.urlr   r   r   r   r   r   r   Ú<module>   s    